Fix misc. linter errors

This commit is contained in:
beeankha
2020-05-14 15:43:50 -04:00
parent e078ac1c80
commit 479ab8550d
10 changed files with 28 additions and 25 deletions

View File

@@ -34,7 +34,7 @@ class Command(BaseCommand):
if clear:
for i in range(12):
sys.stdout.write('\x1b[1A\x1b[2K')
for l in lines:
print(l)
for line in lines:
print(line)
clear = True
time.sleep(.25)