diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0a764a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +env diff --git a/main.py b/main.py index 4b756dc..5fc361d 100644 --- a/main.py +++ b/main.py @@ -43,14 +43,14 @@ def __init__(self): self.toAddress = None - @app.command(help = "Ability to move the files within the directory") + @app.command("move",help = "Ability to move the files within the directory") def m(): typer.echo("Executing command --m") BeginMovingFiles = MainModel() BeginMovingFiles.obtain_directory() - @app.command(help = "Ability to search the specific directory") + @app.command("search",help = "Ability to search the specific directory") def s(): typer.echo("Executing command --s") #Create new FileSearcher Object