Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobranco777 committed Jul 3, 2023
1 parent e413b7a commit af402da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Default container tag
CONT_TAG=suse/qac/pcw
LINE_MAX=140
FILES=ocw/lib/*.py ocw/management/commands/*.py ocw/*.py cleanup_k8s.py
FILES=ocw/lib/*.py ocw/management/commands/*.py ocw/*.py *.py

.PHONY: all
all: prepare flake8 test pylint
Expand Down
1 change: 1 addition & 0 deletions ocw/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

class FilteredSingleTableView(SingleTableView):
filter_class = None
filter = None

def get_table_data(self):
data = super().get_table_data()
Expand Down
1 change: 1 addition & 0 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ disable=
C0415, # Import outside toplevel
E1101, # no-member
R0904, # Too many public methods
R0903, # Too few public methods
R1702, # Too many nested blocks
W0237, # arguments-renamed
W0603, # Using the global statement
Expand Down

0 comments on commit af402da

Please sign in to comment.