thumbor: Replace comment type annotations with normal annotations.

Run custom lint checks on thumbor files.
This commit is contained in:
Aman Agrawal
2020-04-17 23:12:20 +05:30
committed by Tim Abbott
parent a486872a8e
commit 261bc043c9
3 changed files with 6 additions and 12 deletions

View File

@@ -329,10 +329,6 @@ python_rules = RuleList(
'good_lines': ['if my_django_model.id == 42', 'self.user_profile._meta.pk'],
'bad_lines': ['if my_django_model.pk == 42']},
{'pattern': r'^\s*#\s*type:',
'exclude': {
# thumbor is (currently) python2 only
'zthumbor/',
},
'description': 'Comment-style function type annotation. Use Python3 style annotations instead.',
},
{'pattern': r"\S\s*#\s*type:(?!\s*ignore)",