summaryrefslogtreecommitdiffstats
path: root/gamechestcli
diff options
context:
space:
mode:
Diffstat (limited to 'gamechestcli')
-rwxr-xr-xgamechestcli/src/gamechest/__main__.py5
-rw-r--r--gamechestcli/src/gamechest/config.py3
2 files changed, 3 insertions, 5 deletions
diff --git a/gamechestcli/src/gamechest/__main__.py b/gamechestcli/src/gamechest/__main__.py
index 8452b99..30f277c 100755
--- a/gamechestcli/src/gamechest/__main__.py
+++ b/gamechestcli/src/gamechest/__main__.py
@@ -17,12 +17,11 @@ Options:
import sys
import docopt
-from rich import print
-
from gamechest.cliactions import install, remove, run
from gamechest.gameconfig import config
-from gamechest.statusdb import StatusDB
from gamechest.gamedb import GameDB
+from gamechest.statusdb import StatusDB
+from rich import print
def main():
diff --git a/gamechestcli/src/gamechest/config.py b/gamechestcli/src/gamechest/config.py
index cd0c7e8..66f37fc 100644
--- a/gamechestcli/src/gamechest/config.py
+++ b/gamechestcli/src/gamechest/config.py
@@ -2,8 +2,7 @@ from dataclasses import asdict, dataclass
from pathlib import Path
import yaml
-from xdg.BaseDirectory import (load_first_config, save_config_path,
- xdg_data_home)
+from xdg.BaseDirectory import load_first_config, save_config_path, xdg_data_home
CONFIG_PATH_TUPLE = ('org.devys.gamechest', 'config.yaml')