We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16535e2 commit e41a880Copy full SHA for e41a880
src/shelloracle/__main__.py
@@ -20,8 +20,8 @@ def configure_logging():
20
21
def configure():
22
# nest this import in a function to avoid expensive module loads
23
- from .configure import configure_shelloracle
24
- configure_shelloracle()
+ from .bootstrap import bootstrap_shelloracle
+ bootstrap_shelloracle()
25
26
27
def parse_args() -> argparse.Namespace:
src/shelloracle/configure.py renamed to src/shelloracle/bootstrap.py
@@ -165,7 +165,7 @@ def user_select_provider() -> type[Provider]:
165
return provider
166
167
168
-def configure_shelloracle() -> None:
+def bootstrap_shelloracle() -> None:
169
try:
170
provider = user_select_provider()
171
settings = user_configure_settings(provider)
0 commit comments