summaryrefslogtreecommitdiff
path: root/src/appearance.py
diff options
context:
space:
mode:
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