File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ __pycache__
13
13
# Poetry
14
14
poetry.toml
15
15
16
+ # Other Python tools
17
+ .ropeproject
18
+
16
19
# Mise
17
20
mise.toml
18
21
.mise.toml
Original file line number Diff line number Diff line change @@ -239,9 +239,9 @@ def get_global_configuration(cls) -> Self:
239
239
"""
240
240
from crawlee .service_container import get_configuration
241
241
242
- cfg = get_configuration ()
242
+ config = get_configuration ()
243
243
244
- if not isinstance (cfg , cls ):
245
- raise TypeError (f'Requested global configuration object of type { cls } , but { cfg .__class__ } was found' )
244
+ if not isinstance (config , cls ):
245
+ raise TypeError (f'Requested global configuration object of type { cls } , but { config .__class__ } was found' )
246
246
247
- return cfg
247
+ return config
You can’t perform that action at this time.
0 commit comments