Skip to content

Commit

Permalink
Resolving linting/formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
NovusEdge committed Apr 10, 2021
1 parent ccab8d3 commit 8d239d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@


def make_image() -> None:
subprocess.run('docker' args=['build', '--no-cache', '-t', 'BTBMT', '.'], shell=True)
subprocess.run('docker', args=['build', '--no-cache', '-t', 'BTBMT', '.'], shell=True)

def delete_image() -> None:
subprocess.run('docker' args=['rmi', '-f', 'BTBMT'], shell=True)
subprocess.run('docker', args=['rmi', '-f', 'BTBMT'], shell=True)

def update_image() -> None:
delete_image()
Expand Down

0 comments on commit 8d239d3

Please sign in to comment.