Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
Odyhibit committed Jun 15, 2024
1 parent 2ec6301 commit 0af1973
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@
import src.decode_five_strips_of_bacon as decode_bacon


class MainWindow: # pylint: disable=too-few-public-methods
class MainWindow:
# pylint: disable=too-few-public-methods
# pylint: disable=too-many-locals
# pylint: disable=too-many-statements
"""The main window"""

def __init__(self, root): # pylint: disable-msg=too-many-locals
def __init__(self, root):
current_dir = pathlib.Path(__file__).parent.resolve()

image = Image.open(os.path.join(current_dir, "bacon_five.png"))
Expand Down

0 comments on commit 0af1973

Please sign in to comment.