Skip to content

Commit 43a59d7

Browse files
committed
naming
1 parent 2e3d991 commit 43a59d7

File tree

11 files changed

+8
-10
lines changed

11 files changed

+8
-10
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from smct_pkg import config, tray
1+
from smct import config, tray
22

33

44
def main():

requirements.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
win10toast
21
pystray
32
pandas
4-
customtkinter
5-
CTkMessagebox
3+
customtkinter
File renamed without changes.

smct_pkg/config.py renamed to smct/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import sys
44

5-
from smct_pkg import (
5+
from smct import (
66
notification,
77
paths,
88
registry,

smct_pkg/multimonitortool.py renamed to smct/multimonitortool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import subprocess
22

33
import pandas as pd
4-
from smct_pkg import config, paths
4+
from smct import config, paths
55

66

77
def _get_monitor_df():
File renamed without changes.

smct_pkg/paths.py renamed to smct/paths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import sys
33

4-
from smct_pkg import ui_strings
4+
from smct import ui_strings
55

66

77
def get_base_path():

smct_pkg/registry.py renamed to smct/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import winreg
22

3-
from smct_pkg import paths, ui_strings
3+
from smct import paths, ui_strings
44

55
KEY_NAME = ui_strings.APP_NAME
66
REGISTRY_KEY = r"Software\Microsoft\Windows\CurrentVersion\Run"

smct_pkg/tray.py renamed to smct/tray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from PIL import Image
55
from pystray import MenuItem as item
66

7-
from smct_pkg import config, multimonitortool, paths, registry, ui_strings
7+
from smct import config, multimonitortool, paths, registry, ui_strings
88

99
ICON = None
1010

smct_pkg/ui.py renamed to smct/ui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import tkinter
55
import customtkinter
66
from customtkinter import filedialog
7-
from smct_pkg import ui_strings, config, multimonitortool, paths
7+
from smct import ui_strings, config, multimonitortool, paths
88

99
customtkinter.set_ctk_parent_class(tkinter.Tk)
1010

0 commit comments

Comments
 (0)