From 65e45a0e0d5b6e99f7a1508f415c46a8b2ebe669 Mon Sep 17 00:00:00 2001 From: Anna Wiggins Date: Thu, 21 Jan 2016 12:37:44 -0500 Subject: [PATCH] Remove now unused config.py --- config.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 config.py diff --git a/config.py b/config.py deleted file mode 100644 index 0dc27ea..0000000 --- a/config.py +++ /dev/null @@ -1,19 +0,0 @@ -# This class exists to satisfy dependencies in companion.py. -# It's mostly a stub; I don't want to pull EDMC's config.py -# without first understanding more of its semantics. -# For username/password settings, see Readme.md - -from os import path -import os - -class Config(): - app_dir = path.join(path.expanduser('~'), '.ed_tools/') - - def __init__(self): - try: - os.mkdir(self.app_dir) - except OSError: - pass # Ignore existing directory - - -config = Config()