Skip to content

Commit

Permalink
tab
Browse files Browse the repository at this point in the history
  • Loading branch information
stgm committed Dec 10, 2024
1 parent ed6b936 commit 13fdb2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/_basics.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def basic_style(test):
def testMethod():
if lineno := has_syntax_error():
return False, f"de code bevat een syntax error op regel {lineno}"
if has_string(" "):
if has_string(" "):
return False, "let op dat je geen tabs gebruikt"
if has_string("Optional"):
return False, "let op dat je niet Optional[...] gebruikt als type hint maar ... | None"
Expand Down
2 changes: 1 addition & 1 deletion tests/_basics_no_listcomp.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def basic_style(test):
def testMethod():
if lineno := has_syntax_error():
return False, f"de code bevat een syntax error op regel {lineno}"
if has_string(" "):
if has_string(" "):
return False, "let op dat je geen tabs gebruikt"
if has_string("Optional"):
return False, "let op dat je niet Optional[...] gebruikt als type hint maar ... | None"
Expand Down

0 comments on commit 13fdb2c

Please sign in to comment.