Skip to content

Commit

Permalink
Update docstrings in funcitons and classes
Browse files Browse the repository at this point in the history
Added better and explicit docstrings to the fuinctions that are internal and extrenal and some pylint corrections
  • Loading branch information
dmtzs committed Dec 19, 2023
1 parent d5bd987 commit 129cc7c
Show file tree
Hide file tree
Showing 2 changed files with 307 additions and 68 deletions.
32 changes: 13 additions & 19 deletions .github/config/.pylintrc
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
[MESSAGES CONTROL]
disable=
C0303,
C0304,
C0116,
W0703,
R1705,
C0114,
W0702,
R0912,
R0915,
W0511,
C0413,
F0010,
R0401,
R1720,
R1710,
C0115,
W0611,
E1133,
E1135,
C0116, # Missing function or method docstring
W0703, # Catching too general exception Exception
R1705, # Unnecessary "else" after "return"
W0702, # No exception type(s) specified
R0912, # Too many branches
R0915, # Too many statements
C0413, # Import "from module import *" should be placed at the top of the module
F0010, # error while code parsing: Unable to load file
R0401, # Cyclic import
R1720, # Unnecessary "elif" after "return"
R1710, # Either all return statements in a function should return an expression, or none of them should.
E1133, # Non-iterable value passed to an iterator's __next__ method
E1135, # Non-iterator passed to iter

[FORMAT]
max-line-length=210
Loading

0 comments on commit 129cc7c

Please sign in to comment.