From fdc414ede385906622f60455904c6b32d0dc0e15 Mon Sep 17 00:00:00 2001 From: Tomas Korbar Date: Thu, 21 Mar 2019 14:56:36 +0100 Subject: [PATCH] Fix import of appdirs in Configuration class Import of appdirs without reference to cheat module caused ModuleNotFoundError --- cheat/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheat/configuration.py b/cheat/configuration.py index e23dfa2..e503654 100644 --- a/cheat/configuration.py +++ b/cheat/configuration.py @@ -1,5 +1,5 @@ from cheat.utils import Utils -import appdirs +import cheat.appdirs as appdirs import json import os