Skip to content

Commit 2262a15

Browse files
committed
Fix dumb pylint issue
1 parent 245fa61 commit 2262a15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readthedocs/redirects/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class Meta:
110110
verbose_name_plural = _('redirects')
111111
ordering = ('-update_dt',)
112112

113-
def save(self, *args, **kwargs):
113+
def save(self, *args, **kwargs): # pylint: disable=arguments-differ
114114
if '$rest' in self.from_url:
115115
self.from_url_without_rest = self.from_url.replace('$rest', '')
116116
super().save(*args, **kwargs)

0 commit comments

Comments
 (0)