Skip to content

Commit f121c4d

Browse files
committed
fix(constants): use proper package pathing
1 parent 9b2f099 commit f121c4d

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

actions/AdSchedule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
from loguru import logger as log
1515

16-
from constants import (
16+
from ..constants import (
1717
AD_SCHEDULE_FETCH_INTERVAL_SECONDS,
1818
AD_DISPLAY_UPDATE_INTERVAL_SECONDS,
1919
ERROR_DISPLAY_DURATION_SECONDS,

actions/ChatMode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
from loguru import logger as log
1414

15-
from constants import (
15+
from ..constants import (
1616
CHAT_MODE_UPDATE_INTERVAL_SECONDS,
1717
ERROR_DISPLAY_DURATION_SECONDS,
1818
)

actions/Clip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from src.backend.PluginManager.EventAssigner import EventAssigner
88
from src.backend.PluginManager.InputBases import Input
99

10-
from constants import ERROR_DISPLAY_DURATION_SECONDS
10+
from ..constants import ERROR_DISPLAY_DURATION_SECONDS
1111

1212

1313
class Icons(StrEnum):

actions/Marker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from src.backend.PluginManager.EventAssigner import EventAssigner
88
from src.backend.PluginManager.InputBases import Input
99

10-
from constants import ERROR_DISPLAY_DURATION_SECONDS
10+
from ..constants import ERROR_DISPLAY_DURATION_SECONDS
1111

1212

1313
class Icons(StrEnum):

actions/PlayAd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from GtkHelper.GenerativeUI.ComboRow import ComboRow
1010
from GtkHelper.ComboRow import SimpleComboRowItem, BaseComboRowItem
1111

12-
from constants import ERROR_DISPLAY_DURATION_SECONDS
12+
from ..constants import ERROR_DISPLAY_DURATION_SECONDS
1313

1414

1515
class Icons(StrEnum):

actions/SendMessage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from loguru import logger as log
1111

12-
from constants import ERROR_DISPLAY_DURATION_SECONDS
12+
from ..constants import ERROR_DISPLAY_DURATION_SECONDS
1313

1414

1515
class Icons(StrEnum):

actions/ShowViewers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
from loguru import logger as log
1212

13-
from constants import VIEWER_UPDATE_INTERVAL_SECONDS
13+
from ..constants import VIEWER_UPDATE_INTERVAL_SECONDS
1414

1515

1616
class Icons(StrEnum):

0 commit comments

Comments
 (0)