mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-11-07 17:36:00 +00:00
[ci] auto-format
This commit is contained in:
parent
09de3f2ad6
commit
118f06c6d7
1 changed files with 42 additions and 39 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue