Skip to content

Commit 19aad27

Browse files
author
Hongbin Huang
committed
lint: fmt using black 23.1.0
1 parent 8c35267 commit 19aad27

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

tests/easy_app/factories.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
class UserFactory(DjangoModelFactory):
7-
87
username = Faker("user_name")
98
email = Faker("email")
109

tests/test_api_base_response.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77

88
def test_base_api_result_base():
9-
109
assert BaseAPIResponse("").json_data["data"] == ""
1110

1211
assert BaseAPIResponse("1").json_data["data"] == "1"
@@ -20,7 +19,6 @@ def test_base_api_result_base():
2019

2120

2221
def test_base_api_result_dict():
23-
2422
assert BaseAPIResponse({"a": 1, "b": 2}).json_data["data"] == {
2523
"a": 1,
2624
"b": 2,

0 commit comments

Comments
 (0)