mirror of
				https://github.com/nonebot/nonebot2.git
				synced 2025-10-30 22:46:40 +00:00 
			
		
		
		
	🚨 remove linter warning
This commit is contained in:
		| @@ -8,8 +8,8 @@ from types import ModuleType | |||||||
| from collections import Counter | from collections import Counter | ||||||
| from contextvars import ContextVar | from contextvars import ContextVar | ||||||
| from importlib.abc import MetaPathFinder | from importlib.abc import MetaPathFinder | ||||||
| from typing import Set, List, Iterable, Optional |  | ||||||
| from importlib.machinery import PathFinder, SourceFileLoader | from importlib.machinery import PathFinder, SourceFileLoader | ||||||
|  | from typing import Set, List, Union, Iterable, Optional, Sequence | ||||||
|  |  | ||||||
| from .export import Export, _export | from .export import Export, _export | ||||||
|  |  | ||||||
| @@ -200,7 +200,10 @@ class PluginManager: | |||||||
|  |  | ||||||
| class PluginFinder(MetaPathFinder): | class PluginFinder(MetaPathFinder): | ||||||
|  |  | ||||||
|     def find_spec(self, fullname: str, path, target): |     def find_spec(self, | ||||||
|  |                   fullname: str, | ||||||
|  |                   path: Optional[Sequence[Union[bytes, str]]], | ||||||
|  |                   target: Optional[ModuleType] = None): | ||||||
|         if _manager_stack: |         if _manager_stack: | ||||||
|             index = -1 |             index = -1 | ||||||
|             origin_spec = PathFinder.find_spec(fullname, path, target) |             origin_spec = PathFinder.find_spec(fullname, path, target) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user