Skip to content

Commit

Permalink
lint/black setup.py and test/common.py
Browse files Browse the repository at this point in the history
  • Loading branch information
astanin committed Mar 23, 2020
1 parent b839e9f commit 0009bd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@
],
py_modules=["tabulate"],
entry_points={"console_scripts": console_scripts},
extras_require={"widechars": ["wcwidth"]}
extras_require={"widechars": ["wcwidth"]},
)
2 changes: 1 addition & 1 deletion test/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ def assert_in(result, expected_set):
for i, expected in zip(nums, expected_set):
print("Expected %d:\n%s\n" % (i, expected))
print("Got:\n%s\n" % result)
assert (result in expected_set)
assert result in expected_set

0 comments on commit 0009bd3

Please sign in to comment.