Fix misc. linter errors due to the flake8-3.8.1 release

- [Ref] https://flake8.pycqa.org/en/latest/release-notes/
This commit is contained in:
beeankha
2020-05-14 15:43:50 -04:00
committed by Christian Adams
parent bd23c41d25
commit 85426f76a5
11 changed files with 33 additions and 31 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)