Skip to content

Commit ede9fb0

Browse files
committed
Ignore silly lint issue
1 parent 666d972 commit ede9fb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

readthedocs/builds/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def _get_versions(self, project):
8787

8888
class BuildList(BuildBase, BuildTriggerMixin, ListView):
8989

90-
def get_context_data(self, **kwargs):
90+
def get_context_data(self, **kwargs): # pylint: disable=arguments-differ
9191
context = super().get_context_data(**kwargs)
9292

9393
active_builds = self.get_queryset().exclude(

readthedocs/projects/views/public.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_queryset(self):
6060

6161
return queryset
6262

63-
def get_context_data(self, **kwargs):
63+
def get_context_data(self, **kwargs): # pylint: disable=arguments-differ
6464
context = super().get_context_data(**kwargs)
6565
context['tag'] = self.tag
6666
return context

0 commit comments

Comments
 (0)