Skip to content

Commit

Permalink
fix: disable longstanding pylint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
robrap committed Oct 31, 2023
1 parent cb84bbd commit 11acf2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def some_function_view(request): # pylint: disable=unused-argument
}
view_classes = {
"class_view": SomeClassView,
"view_set": views['view_set'].cls,
"view_set": views['view_set'].cls, # pylint: disable=no-member
"function_view": views['function_view'].view_class,
}
view = views[view_type]
Expand Down

0 comments on commit 11acf2e

Please sign in to comment.