Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Moosems committed May 11, 2024
1 parent d4d33cf commit 63ac862
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
run: |
pip install black
pip install -r requirements.txt
black -check .
black --check .
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
from tkinter.ttk import Button, Combobox, Entry, Frame, Label
from webbrowser import open as openwebpage

from dialogs import Messagebox
from platformdirs import user_data_dir
from pyowm import OWM
from pyowm.commons.exceptions import (APIRequestError,
InvalidSSLCertificateError)
from pyowm.commons.exceptions import APIRequestError, InvalidSSLCertificateError
from pyowm.commons.exceptions import NotFoundError as OWMNotFoundError
from pyowm.commons.exceptions import TimeoutError
from requests import Response
from requests import get as requests_get
from sv_ttk import set_theme

from dialogs import Messagebox

VERSION = "0.1"

# Create constant
Expand Down

0 comments on commit 63ac862

Please sign in to comment.