[ci] auto-format

This commit is contained in:
im-yellow 2024-10-22 21:20:58 +00:00 committed by github-actions[bot]
parent 09de3f2ad6
commit 118f06c6d7

View file

@ -30,6 +30,8 @@ def override(cls: ClassType) -> Callable[[MethodType], MethodType]:
return decorator
# Enhanced Gather Tab
class EnhancedPublicGatherTab(PublicGatherTab):
@override(PublicGatherTab)
def _build_join_tab(self, width: float, height: float) -> None:
@ -204,7 +206,8 @@ class EnhancedPublicGatherTab(PublicGatherTab):
if is_refreshing:
self._original__update_party_rows()
if hide_full:
self._parties_sorted = [p for p in self._parties_sorted if p[1].size < p[1].size_max]
self._parties_sorted = [
p for p in self._parties_sorted if p[1].size < p[1].size_max]
if hide_empty:
self._parties_sorted = [p for p in self._parties_sorted if p[1].size > 0]
if only_empty: