diff options
| author | Chandler J <cjustice2000@gmail.com> | 2024-04-15 18:51:10 -0600 |
|---|---|---|
| committer | Chandler J <cjustice2000@gmail.com> | 2024-04-15 18:51:10 -0600 |
| commit | a29669bd7a921f32636043041d3081e668a838ae (patch) | |
| tree | 9d625197d800dbe768440d52b6d1178a0399cda0 | |
| parent | fba95abb417e0907c6148b61acae791ae01adb28 (diff) | |
deleting dead code
| -rw-r--r-- | src/appearance.py | 14 | ||||
| -rw-r--r-- | src/get_i3_appearence.py | 12 | ||||
| -rw-r--r-- | src/initialize_i3.py | 0 |
3 files changed, 0 insertions, 26 deletions
diff --git a/src/appearance.py b/src/appearance.py deleted file mode 100644 index 013d5fc..0000000 --- a/src/appearance.py +++ /dev/null @@ -1,14 +0,0 @@ - - -class Appearance: - """ - Generic object to get configuration settings for a given program - - path - path to the configuration file - """ - def __init__(self, path): - print("hello from appearance") - self.path = path - - def get(self): - pass diff --git a/src/get_i3_appearence.py b/src/get_i3_appearence.py deleted file mode 100644 index 961740d..0000000 --- a/src/get_i3_appearence.py +++ /dev/null @@ -1,12 +0,0 @@ - -from appearance import Appearance - -class i3_Appearence(Appearance): - - def __init__(self, path): - super().__init__(self) - - def get(self): - pass - -test = i3_Appearence("test") diff --git a/src/initialize_i3.py b/src/initialize_i3.py deleted file mode 100644 index e69de29..0000000 --- a/src/initialize_i3.py +++ /dev/null |
