From 3a8aadf6aaa7066957526baacbaa49e41bb4f0bf Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Mon, 28 Sep 2020 20:15:28 -0700 Subject: [PATCH] Remove __main__ from photodb.py. --- etiquette/photodb.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/etiquette/photodb.py b/etiquette/photodb.py index 8267e32..b923b00 100644 --- a/etiquette/photodb.py +++ b/etiquette/photodb.py @@ -1886,7 +1886,3 @@ class PhotoDB( def save_config(self): with self.config_filepath.open('w', encoding='utf-8') as handle: handle.write(json.dumps(self.config, indent=4, sort_keys=True)) - -if __name__ == '__main__': - p = PhotoDB() - print(p)