fix: apply ruff formatting

This commit is contained in:
3252a8
2026-06-01 11:16:28 +03:00
parent 21079f78dc
commit d97afbec18
9 changed files with 10 additions and 24 deletions
+1 -3
View File
@@ -132,9 +132,7 @@ class PackageSet(RootModel[Dict[str, List[TrafficPackage]]]):
@property
def non_stars_currencies(self) -> List[str]:
return [
currency
for currency, packages in self.root.items()
if currency != "stars" and packages
currency for currency, packages in self.root.items() if currency != "stars" and packages
]
def has_any(self) -> bool: