registry.py 307 B

123456789101112
  1. """
  2. This is not a plugin, this is just the place were plugins are registered.
  3. """
  4. from jedi.plugins import stdlib
  5. from jedi.plugins import flask
  6. from jedi.plugins import pytest
  7. from jedi.plugins import django
  8. from jedi.plugins import plugin_manager
  9. plugin_manager.register(stdlib, flask, pytest, django)