Skip to content

Commit

Permalink
Fixed name "lib" colliding with existing lib module
Browse files Browse the repository at this point in the history
  • Loading branch information
marcpinet committed Oct 12, 2022
1 parent 6ebf720 commit 3623829
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main.pyw
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ------------------------------IMPORTS------------------------------


from lib import gui
from util import gui

from PyQt5 import QtWidgets, QtGui

Expand All @@ -17,7 +17,7 @@ def main() -> None:
Make sure to write the title in Japanese.<br>
(e.g, instead of writting My Hero Academia, write Boku no Hero Academia).<br>
(e.g, instead of writing My Hero Academia, write Boku no Hero Academia).<br>
Uploaders often use the Japanese title, you won't find your anime otherwise.<br>
You may refer to MyAnimeList.net so you can get both translations.<br>
Don't worry, there is no case sensitivity.<br><br>
Expand Down
2 changes: 1 addition & 1 deletion lib/gui.py → util/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def show_error_popup(self, error_message: str) -> None:
msg.setWindowIcon(QtGui.QIcon(ICON_PATH))
msg.exec_()

def show_info_popup(self, info_message: str):
def show_info_popup(self, info_message: str) -> None:
"""Show an info popup message
Args:
Expand Down
File renamed without changes.

0 comments on commit 3623829

Please sign in to comment.