Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Resolve symbolic error
  • Loading branch information
Agent-Hellboy committed Oct 8, 2023
commit 273844cd5178dd87ff41c81511dc4f1c35455491
2 changes: 1 addition & 1 deletion integration_tests/test_str_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def isspace():

s:str = " "
assert s.isspace() == True
s: str = "a"
s = "a"
assert s.isspace() == False

def check():
Expand Down