diff options
| author | vg <vgm+dev@devys.org> | 2026-02-28 17:49:19 +0100 |
|---|---|---|
| committer | vg <vgm+dev@devys.org> | 2026-02-28 17:49:19 +0100 |
| commit | a68f2aa0a588d7eef146e42d361755e4921683d3 (patch) | |
| tree | 1c9e2b3a8d5f0f86c1079feb980bf5c5edbb24e2 /gamechestcli | |
| parent | ee19678416bee1c26c056a08e2bff2a09f12b318 (diff) | |
| download | gamechest-a68f2aa0a588d7eef146e42d361755e4921683d3.tar.gz gamechest-a68f2aa0a588d7eef146e42d361755e4921683d3.tar.bz2 gamechest-a68f2aa0a588d7eef146e42d361755e4921683d3.zip | |
git-sync on dita
Diffstat (limited to 'gamechestcli')
| -rwxr-xr-x | gamechestcli/src/gamechest/__main__.py | 5 | ||||
| -rw-r--r-- | gamechestcli/src/gamechest/config.py | 3 |
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') |
