Skip to content

Commit

Permalink
isort moment
Browse files Browse the repository at this point in the history
  • Loading branch information
themanyfaceddemon committed Aug 23, 2024
1 parent 34e3c74 commit 33e1540
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Code/gui/conntect.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import logging
from pathlib import Path

import dearpygui.dearpygui as dpg
from DMBotNetwork import Client
from root_path import ROOT_PATH
Expand Down
3 changes: 2 additions & 1 deletion Code/gui/main_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
from dearpygui_async import DearPyGuiAsync
from DMBotTools import Coordinate

from .conntect import ConnectManager
from .fonts import FontManager
from .map import MapRenderer
from .settings import SettingsManager
from .conntect import ConnectManager


class DMClientApp:
def __init__(self):
Expand Down
1 change: 1 addition & 0 deletions Code/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging

from DMBotNetwork import Client
from gui.main_app import DMClientApp

Expand Down
2 changes: 1 addition & 1 deletion Code/root_path.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from pathlib import Path

ROOT_PATH = Path(__file__).resolve().parent.parent
ROOT_PATH = Path(__file__).parents[1]

0 comments on commit 33e1540

Please sign in to comment.