From 2250004d7b73d3c158f78c5ca7c46bd8d23009f7 Mon Sep 17 00:00:00 2001 From: Vishal Date: Wed, 25 Sep 2024 02:18:43 +0530 Subject: [PATCH] Fixing Pylint (I hate you Pylint) --- src/assets/ba_data/python/bauiv1lib/benchmarks.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/assets/ba_data/python/bauiv1lib/benchmarks.py b/src/assets/ba_data/python/bauiv1lib/benchmarks.py index 842518f8..b2bd1bb5 100644 --- a/src/assets/ba_data/python/bauiv1lib/benchmarks.py +++ b/src/assets/ba_data/python/bauiv1lib/benchmarks.py @@ -378,11 +378,15 @@ class BenchmarksAndStressTestsWindow(bui.MainWindow): bui.app.classic.run_stress_test( playlist_type=self._stress_test_game_type, playlist_name=cast( - str, bui.textwidget(query=self._stress_test_playlist_name_field) + str, bui.textwidget( + query=self._stress_test_playlist_name_field + ) ), player_count=self._stress_test_player_count, round_duration=self._stress_test_round_duration, ) bui.containerwidget(edit=self._root_widget, transition='out_right') else: - bui.screenmessage(bui.Lstr(value='Already present in another activity.')) + bui.screenmessage( + bui.Lstr(value='Already present in another activity.') + )