Skip to content

Commit

Permalink
fixed problems pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulinaPacyna committed Nov 1, 2023
1 parent be0362b commit 2bbc97d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[MASTER]
disable=
C0114
disable=C0114,R0108
ignore-paths=tests
[FORMAT]
max-line-length=88
2 changes: 1 addition & 1 deletion annotation_checker/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
class IncorrectFileException(Exception):
pass
"""Incorrect file exception"""
2 changes: 1 addition & 1 deletion annotation_checker/file_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from annotation_checker.exceptions import IncorrectFileException


class FileParser:
class FileParser: # pylint: disable=too-few-public-methods
"""
File with its AST, functions, classes and exclusions by comments
Parameters
Expand Down

0 comments on commit 2bbc97d

Please sign in to comment.