remove unnecessary imports.

This commit is contained in:
jowj 2018-05-03 19:20:52 -05:00
parent 5eadcbe89e
commit d245d447f9

View File

@ -1,6 +1,4 @@
import os
import subprocess
import pdb
SCRIPTPATH = os.path.realpath(__file__)
SCRIPTDIR = os.path.dirname(SCRIPTPATH)
@ -16,7 +14,7 @@ def dockerrun(
'--tty',
'--volume', f'{SCRIPTDIR}:{COLOVEDIR}:{colovevolperms}',
'--hostname', hostname,
'colove:latest']
'colove:latest'
subprocess.run(args)
if __name__ == '__main__':