Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/jedi/plugins/registry.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1""" 

2This is not a plugin, this is just the place were plugins are registered. 

3""" 

4 

5from jedi.plugins import stdlib 

6from jedi.plugins import flask 

7from jedi.plugins import pytest 

8from jedi.plugins import django 

9from jedi.plugins import plugin_manager 

10 

11 

12plugin_manager.register(stdlib, flask, pytest, django)