mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-06-27 17:01:20 -04:00
Python multiple imports per line
This commit is contained in:
parent
dfe15414b0
commit
d0b122a58a
3 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
import shutil, os
|
||||
import shutil
|
||||
import os
|
||||
|
||||
# if WALLY is defined, then get it
|
||||
WALLY_HOME = os.getenv("WALLY")
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#!/usr/bin/env python3
|
||||
import os,sys,subprocess
|
||||
import os
|
||||
import sys
|
||||
import subprocess
|
||||
from datetime import datetime, timezone, timedelta
|
||||
|
||||
if not os.path.isfile(sys.path[0]+'/slack-webhook-url.txt'):
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import sys, fileinput
|
||||
import sys
|
||||
import fileinput
|
||||
|
||||
address = 0
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue