summaryrefslogtreecommitdiff
path: root/src/appearance.py
diff options
context:
space:
mode:
authorChandler J <cjustice2000@gmail.com>2024-03-01 11:08:46 -0700
committerChandler J <cjustice2000@gmail.com>2024-03-01 11:08:46 -0700
commit13ea9b7539534b19ce61d2694c0cf3832a6ec35e (patch)
tree4ec43e7e067b9584493c1eba3ef7fe3d32e7d2d2 /src/appearance.py
parent4734634389cdbac0e0c9596a4c1737b4fb6c644d (diff)
created some ideas for things to do with project during hackusu
Diffstat (limited to 'src/appearance.py')
-rw-r--r--src/appearance.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/appearance.py b/src/appearance.py
new file mode 100644
index 0000000..013d5fc
--- /dev/null
+++ b/src/appearance.py
@@ -0,0 +1,14 @@
+
+
+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