Fixes for ask_for_context

This commit is contained in:
Toke Stuart Jepsen 2024-05-23 23:07:02 +01:00
parent 62de021afb
commit 71471cf725
2 changed files with 3 additions and 3 deletions

View file

@ -46,7 +46,7 @@ def bake_container(container):
def main():
context = context_dialog.show()
context = context_dialog.ask_for_context()
if context is None:
return

View file

@ -1,8 +1,8 @@
from .window import ContextDialog, main, show
from .window import ContextDialog, main, ask_for_context
__all__ = (
"ContextDialog",
"main",
"show"
"ask_for_context"
)