diff --git a/src/python/jw/pkg/lib/App.py b/src/python/jw/pkg/lib/App.py index ca38558e..343dc5b0 100644 --- a/src/python/jw/pkg/lib/App.py +++ b/src/python/jw/pkg/lib/App.py @@ -177,8 +177,9 @@ class App: # export try: # Import argcomplete only here to not require it to be compatible # with minimal environments - from argcomplete.completers import \ - BaseCompleter # type: ignore[import-not-found] + from argcomplete.completers import ( # type: ignore[import-not-found] + BaseCompleter + ) class NoopCompleter(BaseCompleter):