Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Feb 18, 2023
1 parent a314a5b commit fb45304
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _unittests/ut_helpgen/test_notebooks.py
Expand Up @@ -71,8 +71,9 @@ def a_te_st_notebook(self, iteration):
fou = list(sorted(set(fou)))
exp = list(sorted(set(exp)))
if len(fou) < len(exp):
raise AssertionError("length {0} != {1}\n{2}\n---\n{3}".format(len(fou), len(exp),
"\n".join(fou), "\n".join(exp)))
raise AssertionError(
"length {0} != {1}\n{2}\n---\n{3}".format(
len(fou), len(exp), "\n".join(fou), "\n".join(exp)))
for i, j in zip(exp, fou):
if i != j:
raise AssertionError(
Expand Down

0 comments on commit fb45304

Please sign in to comment.