🔧 Add Flake8 linting (#1774)

Co-authored-by: nimashadix <nimashadix@pop-os.localdomain>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
Nima Mashhadi M. Reza
2020-08-09 15:24:05 +04:30
committed by GitHub
parent 4daa6ef4e4
commit da9b5201c4
20 changed files with 72 additions and 63 deletions

View File

@@ -126,6 +126,6 @@ def test_create_read():
assert data["text"] == note["text"]
assert data["completed"] == note["completed"]
assert "id" in data
response = client.get(f"/notes/")
response = client.get("/notes/")
assert response.status_code == 200, response.text
assert data in response.json()