Extract Location into separate file

This commit is contained in:
Joscha
2020-04-23 17:38:28 +00:00
parent f3f4be2690
commit 5ef5a56e69
5 changed files with 41 additions and 38 deletions

View File

@@ -9,7 +9,8 @@ import shutil
from pathlib import Path
from typing import List, Set
from .utils import Location, PrettyLogger, prompt_yes_no
from .location import Location
from .utils import PrettyLogger, prompt_yes_no
LOGGER = logging.getLogger(__name__)
PRETTY = PrettyLogger(LOGGER)