Skip to content

Commit

Permalink
Added missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
NovusEdge committed Apr 10, 2021
1 parent 8d239d3 commit 0fbdbc9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker_setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import subprocess
import colorama
import argparse
import pathlib
import sys
import os
Expand Down Expand Up @@ -53,7 +55,7 @@ def main() -> None:
help="Delete the docker image for the bot.", action="store_true"
)

args.parse_args()
args = parser.parse_args()

if not any([args.update_image, args.delete_image, args.make_image]):
auto_run()
Expand Down

0 comments on commit 0fbdbc9

Please sign in to comment.