Skip to content

Commit e41a880

Browse files
committed
Rename program configuration to bootstrap
1 parent 16535e2 commit e41a880

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/shelloracle/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ def configure_logging():
2020

2121
def configure():
2222
# nest this import in a function to avoid expensive module loads
23-
from .configure import configure_shelloracle
24-
configure_shelloracle()
23+
from .bootstrap import bootstrap_shelloracle
24+
bootstrap_shelloracle()
2525

2626

2727
def parse_args() -> argparse.Namespace:

src/shelloracle/configure.py renamed to src/shelloracle/bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def user_select_provider() -> type[Provider]:
165165
return provider
166166

167167

168-
def configure_shelloracle() -> None:
168+
def bootstrap_shelloracle() -> None:
169169
try:
170170
provider = user_select_provider()
171171
settings = user_configure_settings(provider)

0 commit comments

Comments
 (0)