diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-23 22:31:20 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-23 22:31:20 +1000 |
| commit | 6d116540dd06932ff8ba82e8f2b1f6559dec3698 (patch) | |
| tree | cae2c5255d988adb6f5398ecf84f75ef2e19e59f /pywal | |
| parent | 3fdad9fb89d70b8d81483b646e16d20f076e0ebd (diff) | |
tests: Test args
Diffstat (limited to 'pywal')
| -rw-r--r-- | pywal/__main__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pywal/__main__.py b/pywal/__main__.py index 566ff95..69908fe 100644 --- a/pywal/__main__.py +++ b/pywal/__main__.py @@ -24,7 +24,7 @@ from . import util from . import wallpaper -def get_args(): +def get_args(args): """Get the script arguments.""" description = "wal - Generate colorschemes on the fly" arg = argparse.ArgumentParser(description=description) @@ -62,7 +62,7 @@ def get_args(): arg.add_argument("-v", action="store_true", help="Print \"wal\" version.") - return arg.parse_args() + return arg.parse_args(args) def process_args(args): @@ -115,7 +115,7 @@ def process_args(args): def main(): """Main script function.""" - args = get_args() + args = get_args(sys.argv[1:]) process_args(args) # This saves 10ms. |
