Fix invisible character typo (#123933)

Remove accidental addition of zero-width character (U+FEFF) reported by @jaraco:
- c3f4a6b524 (commitcomment-146456562)
This commit is contained in:
Xie Yanbo 2024-09-11 19:44:46 +08:00 committed by GitHub
parent d2b9b6f919
commit e9eedf19c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -280,7 +280,7 @@ class Path:
>>> str(path.parent) >>> str(path.parent)
'mem' 'mem'
If the zipfile has no filename, such attributes are not If the zipfile has no filename, such attributes are not
valid and accessing them will raise an Exception. valid and accessing them will raise an Exception.
>>> zf.filename = None >>> zf.filename = None