Skip to content

Commit 9e008f0

Browse files
committed
Remove python2 compat syntax
1 parent f809529 commit 9e008f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_dbq/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def save(self, *args, **kwargs):
110110
)
111111
return # cancel the save
112112

113-
return super(Job, self).save(*args, **kwargs)
113+
return super().save(*args, **kwargs)
114114

115115
def update_next_task(self):
116116
self.next_task = get_next_task_name(self.name, self.next_task) or ""

0 commit comments

Comments
 (0)