You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import os
if os.altsep is not None:
print(os.altsep + "asdf")
gives:
Unsupported operands for addition: None and Literal['asdf'] (code: unsupported_operation)
In b.py at line 4
1: import os
2:
3: if os.altsep is not None:
4: print(os.altsep + "asdf")
The text was updated successfully, but these errors were encountered:
gives:
The text was updated successfully, but these errors were encountered: