lint: fixed linting (again) across all files

This commit is contained in:
Stephen Sadowski
2022-02-01 15:15:55 -06:00
committed by Stephen Sadowski
parent 19eee8bfb2
commit d0cfb69f43
5 changed files with 11 additions and 8 deletions

View File

@@ -6,5 +6,5 @@ data = ""
for i in range(1, 250000):
data += str(i)
r = requests.post('http://0.0.0.0:8000/stream', data=data)
r = requests.post("http://0.0.0.0:8000/stream", data=data)
print(r.text)