From 6880808056c2bb4cce6547f56368d2ffd3a835e6 Mon Sep 17 00:00:00 2001 From: MagicLike Date: Sun, 12 Mar 2023 22:30:16 +0100 Subject: [PATCH] Code formatting --- openandroidinstaller/openandroidinstaller.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openandroidinstaller/openandroidinstaller.py b/openandroidinstaller/openandroidinstaller.py index 92868949..6c1aa578 100644 --- a/openandroidinstaller/openandroidinstaller.py +++ b/openandroidinstaller/openandroidinstaller.py @@ -97,7 +97,10 @@ def __init__(self, state: AppState): ) # create the install view - self.install_view = InstallView(on_confirm=self.to_next_view, state=self.state) + self.install_view = InstallView( + on_confirm=self.to_next_view, + state=self.state, + ) # create the final success view self.final_view = SuccessView(state=self.state)