satisfy updated ruff rules

mostly f-strings, manual fixes
This commit is contained in:
Min RK
2024-12-03 09:13:31 +01:00
parent def928f1b7
commit a2877c7be2
16 changed files with 44 additions and 45 deletions

View File

@@ -1050,7 +1050,7 @@ class APIToken(Hashed, Base):
@property
def api_id(self):
return 'a%i' % self.id
return f"a{self.id}"
@property
def owner(self):