remove test.py

This commit is contained in:
Fredrick W. Warren 2025-02-26 14:39:09 -07:00
parent 1419cf5dc2
commit 2af30f8659

15
test.py
View File

@ -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()