-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix pylint errors and actions matrix.
- Loading branch information
1 parent
3682658
commit 76f06c2
Showing
2 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
class Atheneum: | ||
def answer(self): | ||
"""A boilerplate module for Python packate/library design""" | ||
|
||
class Atheneum: #pylint:disable=R0903 | ||
"""The atheneum class has all the answers""" | ||
|
||
def __init__(self): #pylint:disable=C0116 | ||
pass | ||
|
||
def answer(self, exclamation_str): | ||
""" | ||
Return the answer to Life, the Universe, and Everything. | ||
:param exclamation_str: Print how you feel about the answer | ||
""" | ||
|
||
print(exclamation_str) | ||
return 42 |