style: remove unnecessary str call (the thing is already a str!)

This commit is contained in:
justcool393 2023-02-07 05:06:49 -06:00 committed by Ben Rog-Wilhelm
parent a64c0872ee
commit 4a280e345a
6 changed files with 10 additions and 10 deletions

View file

@ -23,4 +23,4 @@ class Mod(Base):
@property
@lazy
def created_datetime(self):
return str(time.strftime("%d/%B/%Y %H:%M:%S UTC", time.gmtime(self.created_utc)))
return time.strftime("%d/%B/%Y %H:%M:%S UTC", time.gmtime(self.created_utc))