From 13ea9b7539534b19ce61d2694c0cf3832a6ec35e Mon Sep 17 00:00:00 2001 From: Chandler J Date: Fri, 1 Mar 2024 11:08:46 -0700 Subject: created some ideas for things to do with project during hackusu --- src/appearance.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/appearance.py (limited to 'src/appearance.py') 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 -- cgit v1.2.3