[ci] auto-format

This commit is contained in:
Freaku17 2023-12-26 13:14:31 +00:00 committed by github-actions[bot]
parent b412893a55
commit 6fe37cc90b

View file

@ -1375,11 +1375,11 @@ class MainMenuTheme(MainMenuActivity):
if TARGET_BALLISTICA_BUILD < 21697: if TARGET_BALLISTICA_BUILD < 21697:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
KioskWindow().get_root_widget(), KioskWindow().get_root_widget(),
) )
else: else:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
KioskWindow().get_root_widget(), from_window = self._root_widget KioskWindow().get_root_widget(), from_window=self._root_widget
) )
# ..or in normal cases go back to the main menu # ..or in normal cases go back to the main menu
else: else:
if main_menu_location == 'Gather': if main_menu_location == 'Gather':
@ -1388,24 +1388,24 @@ class MainMenuTheme(MainMenuActivity):
if TARGET_BALLISTICA_BUILD < 21697: if TARGET_BALLISTICA_BUILD < 21697:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
GatherWindow(transition=None).get_root_widget(), GatherWindow(transition=None).get_root_widget(),
) )
else: else:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
GatherWindow(transition=None).get_root_widget(), from_window=self._root_widget GatherWindow(transition=None).get_root_widget(), from_window=self._root_widget
) )
elif main_menu_location == 'Watch': elif main_menu_location == 'Watch':
# pylint: disable=cyclic-import # pylint: disable=cyclic-import
from bauiv1lib.watch import WatchWindow from bauiv1lib.watch import WatchWindow
if TARGET_BALLISTICA_BUILD < 21697: if TARGET_BALLISTICA_BUILD < 21697:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
WatchWindow(transition=None).get_root_widget(), WatchWindow(transition=None).get_root_widget(),
) )
else: else:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
WatchWindow(transition=None).get_root_widget(), from_window=self._root_widget WatchWindow(transition=None).get_root_widget(), from_window=self._root_widget
) )
elif main_menu_location == 'Team Game Select': elif main_menu_location == 'Team Game Select':
# pylint: disable=cyclic-import # pylint: disable=cyclic-import
from bauiv1lib.playlist.browser import ( from bauiv1lib.playlist.browser import (
@ -1414,16 +1414,16 @@ class MainMenuTheme(MainMenuActivity):
if TARGET_BALLISTICA_BUILD < 21697: if TARGET_BALLISTICA_BUILD < 21697:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
PlaylistBrowserWindow( PlaylistBrowserWindow(
sessiontype=bs.DualTeamSession, transition=None sessiontype=bs.DualTeamSession, transition=None
).get_root_widget(), ).get_root_widget(),
) )
else: else:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
PlaylistBrowserWindow( PlaylistBrowserWindow(
sessiontype=bs.DualTeamSession, transition=None sessiontype=bs.DualTeamSession, transition=None
).get_root_widget(), from_window=self._root_widget ).get_root_widget(), from_window=self._root_widget
) )
elif main_menu_location == 'Free-for-All Game Select': elif main_menu_location == 'Free-for-All Game Select':
# pylint: disable=cyclic-import # pylint: disable=cyclic-import
from bauiv1lib.playlist.browser import ( from bauiv1lib.playlist.browser import (
@ -1432,54 +1432,54 @@ class MainMenuTheme(MainMenuActivity):
if TARGET_BALLISTICA_BUILD < 21697: if TARGET_BALLISTICA_BUILD < 21697:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
PlaylistBrowserWindow( PlaylistBrowserWindow(
sessiontype=bs.FreeForAllSession, sessiontype=bs.FreeForAllSession,
transition=None, transition=None,
).get_root_widget(), ).get_root_widget(),
) )
else: else:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
PlaylistBrowserWindow( PlaylistBrowserWindow(
sessiontype=bs.FreeForAllSession, sessiontype=bs.FreeForAllSession,
transition=None, transition=None,
).get_root_widget(), from_window=self._root_widget ).get_root_widget(), from_window=self._root_widget
) )
elif main_menu_location == 'Coop Select': elif main_menu_location == 'Coop Select':
# pylint: disable=cyclic-import # pylint: disable=cyclic-import
from bauiv1lib.coop.browser import CoopBrowserWindow from bauiv1lib.coop.browser import CoopBrowserWindow
if TARGET_BALLISTICA_BUILD < 21697: if TARGET_BALLISTICA_BUILD < 21697:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
CoopBrowserWindow(transition=None).get_root_widget(), CoopBrowserWindow(transition=None).get_root_widget(),
) )
else: else:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
CoopBrowserWindow(transition=None).get_root_widget(), from_window=self._root_widget CoopBrowserWindow(transition=None).get_root_widget(), from_window=self._root_widget
) )
elif main_menu_location == 'Benchmarks & Stress Tests': elif main_menu_location == 'Benchmarks & Stress Tests':
# pylint: disable=cyclic-import # pylint: disable=cyclic-import
from bauiv1lib.debug import DebugWindow from bauiv1lib.debug import DebugWindow
if TARGET_BALLISTICA_BUILD < 21697: if TARGET_BALLISTICA_BUILD < 21697:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
DebugWindow(transition=None).get_root_widget(), DebugWindow(transition=None).get_root_widget(),
) )
else: else:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
DebugWindow(transition=None).get_root_widget(), from_window=self._root_widget DebugWindow(transition=None).get_root_widget(), from_window=self._root_widget
) )
else: else:
# pylint: disable=cyclic-import # pylint: disable=cyclic-import
from bauiv1lib.mainmenu import MainMenuWindow from bauiv1lib.mainmenu import MainMenuWindow
if TARGET_BALLISTICA_BUILD < 21697: if TARGET_BALLISTICA_BUILD < 21697:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
MainMenuWindow(transition=None).get_root_widget(), MainMenuWindow(transition=None).get_root_widget(),
) )
else: else:
bs.app.ui_v1.set_main_menu_window( bs.app.ui_v1.set_main_menu_window(
MainMenuWindow(transition=None).get_root_widget(), from_window=self._root_widget MainMenuWindow(transition=None).get_root_widget(), from_window=self._root_widget
) )
if not specialoffer.show_offer(): if not specialoffer.show_offer():