Skip to content

Commit 13fdb2c

Browse files
committed
tab
1 parent ed6b936 commit 13fdb2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/_basics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def basic_style(test):
1515
def testMethod():
1616
if lineno := has_syntax_error():
1717
return False, f"de code bevat een syntax error op regel {lineno}"
18-
if has_string(" "):
18+
if has_string(" "):
1919
return False, "let op dat je geen tabs gebruikt"
2020
if has_string("Optional"):
2121
return False, "let op dat je niet Optional[...] gebruikt als type hint maar ... | None"

tests/_basics_no_listcomp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def basic_style(test):
1515
def testMethod():
1616
if lineno := has_syntax_error():
1717
return False, f"de code bevat een syntax error op regel {lineno}"
18-
if has_string(" "):
18+
if has_string(" "):
1919
return False, "let op dat je geen tabs gebruikt"
2020
if has_string("Optional"):
2121
return False, "let op dat je niet Optional[...] gebruikt als type hint maar ... | None"

0 commit comments

Comments
 (0)