diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-11 17:37:04 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-11 17:37:04 +1000 |
| commit | dc855e1b01e9b4526927b8bd69daca733afd97c2 (patch) | |
| tree | 38adb17eb316e92d70b64df6824d3ad91901028f /src/caelestia/parser.py | |
| parent | parser: print help when no args (diff) | |
| download | caelestia-cli-dc855e1b01e9b4526927b8bd69daca733afd97c2.tar.gz caelestia-cli-dc855e1b01e9b4526927b8bd69daca733afd97c2.tar.bz2 caelestia-cli-dc855e1b01e9b4526927b8bd69daca733afd97c2.zip | |
internal: refactor scheme
Also use a single file to store scheme data
Diffstat (limited to 'src/caelestia/parser.py')
| -rw-r--r-- | src/caelestia/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caelestia/parser.py b/src/caelestia/parser.py index 00556b0..eb8734e 100644 --- a/src/caelestia/parser.py +++ b/src/caelestia/parser.py @@ -1,6 +1,5 @@ import argparse -from caelestia.data import get_scheme_names, scheme_variants from caelestia.subcommands import ( clipboard, emoji, @@ -14,6 +13,7 @@ from caelestia.subcommands import ( wallpaper, wsaction, ) +from caelestia.utils.scheme import get_scheme_names, scheme_variants def parse_args() -> (argparse.ArgumentParser, argparse.Namespace): |