From 2af30f8659971a0c3b6b493ba9e3c47e6f17fa0e Mon Sep 17 00:00:00 2001 From: "Fredrick W. Warren" Date: Wed, 26 Feb 2025 14:39:09 -0700 Subject: [PATCH] remove test.py --- test.py | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 test.py diff --git a/test.py b/test.py deleted file mode 100755 index 987c672..0000000 --- a/test.py +++ /dev/null @@ -1,15 +0,0 @@ -#!./venv/bin/python3 - -import click -import os - -#@click.option('--config', '-c', default=config_file, help='Path to the configuration file.') - -@click.command() -@click.option('--debug/-d', envvar='DEVELOPMENTS', default='false', help='enable dubug output') -def main(debug): - print(debug) - - -if __name__ == '__main__': - main()