refactor: Apply lint-amnesty on pylint violations

This commit is contained in:
Usama Sadiq
2021-04-15 16:35:04 +05:00
parent 62c8805e3e
commit ab41a7daee
25 changed files with 40 additions and 41 deletions

View File

@@ -76,7 +76,7 @@ class ExperimentWaffleFlag(CourseWaffleFlag):
self.num_buckets = num_buckets
self.experiment_id = experiment_id
self.bucket_flags = [
CourseWaffleFlag(waffle_namespace, f'{flag_name}.{bucket}', module_name)
CourseWaffleFlag(waffle_namespace, f'{flag_name}.{bucket}', module_name) # lint-amnesty, pylint: disable=toggle-missing-annotation
for bucket in range(num_buckets)
]
self.use_course_aware_bucketing = use_course_aware_bucketing