File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ class LoadError(Exception):
1010
1111
1212def resolve_import (* , target : str , possible_names : set [str ] | None = None ) -> Any :
13+ if possible_names is None :
14+ possible_names = set ()
15+
1316 module_name , _ , target_name = target .partition (":" )
1417 try :
1518 module = importlib .import_module (module_name )
Original file line number Diff line number Diff line change @@ -16,8 +16,6 @@ authors = [
1616classifiers = [
1717 " Development Status :: 4 - Beta" ,
1818 " License :: OSI Approved :: MIT License" ,
19- " Programming Language :: Python :: 3.7" ,
20- " Programming Language :: Python :: 3.8" ,
2119 " Programming Language :: Python :: 3.9" ,
2220 " Programming Language :: Python :: 3.10" ,
2321 " Programming Language :: Python :: 3.11" ,
@@ -28,11 +26,11 @@ classifiers = [
2826 " Topic :: Utilities" ,
2927]
3028dependencies = [
31- " click~=8.1.6 " ,
29+ " click~=8.1.7 " ,
3230 " click-plugins~=1.1.1" ,
3331 " colorama~=0.4.6" ,
34- " aiogram~=3.0.0rc1 " ,
35- " watchfiles~=0.19 .0" ,
32+ " aiogram~=3.0" ,
33+ " watchfiles~=0.20 .0" ,
3634]
3735
3836[project .urls ]
You can’t perform that action at this time.
0 commit comments