File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -324,12 +324,14 @@ def __init__(
324324 self ._dynamic_plugins : dict [str , ModuleType | ModuleNotFoundError | bool ] = {}
325325 """Set of loaded plugin names."""
326326 self ._registered_checkers : set [tuple [str , checkers .BaseChecker , int ]] = set ()
327- """Set of tuples with loaded checker names and reference to checker."""
327+ """Set of tuples with loaded checker name, reference to checker
328+ and checker object id.
329+ """
328330 self ._registered_dynamic_plugin_checkers : set [
329331 tuple [str , checkers .BaseChecker , int ]
330332 ] = set ()
331- """Set of tuples with loaded dynamic plugin checker names and reference to
332- checker.
333+ """Set of tuples with loaded dynamic plugin checker name, reference to
334+ checker and checker object id .
333335 """
334336
335337 # Attributes related to stats
Original file line number Diff line number Diff line change @@ -250,6 +250,7 @@ def test_worker_initialize_custom_plugins(self) -> None:
250250 linter .is_message_enabled ("prefer-typing-namedtuple" ) is False
251251 )
252252 assert linter .is_message_enabled ("consider-alternative-union-syntax" ) is False
253+
253254 worker_initialize (linter = dill .dumps (linter ))
254255 worker_linter = pylint .lint .parallel ._worker_linter
255256 assert isinstance (worker_linter , PyLinter )
You can’t perform that action at this time.
0 commit comments