Skip to content

Commit 9330d28

Browse files
fix ruff-lint check
1 parent 079b930 commit 9330d28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dojo/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1583,7 +1583,7 @@ def get_absolute_url(self):
15831583
@property
15841584
def engagement_id(self):
15851585
try:
1586-
return "ENG-{:03d}".format(self.id)
1586+
return f"ENG-{self.id:03d}"
15871587
except Exception:
15881588
return str(self.id)
15891589

0 commit comments

Comments
 (0)