Skip to content

Commit b1aff3c

Browse files
authored
Small style fixes
"double quotes"
1 parent 392f007 commit b1aff3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyrogram/api/core/primitives/string.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
class String(Bytes):
2525
@staticmethod
2626
def read(b: BytesIO, *args) -> str:
27-
return super(String, String).read(b).decode(errors='replace')
27+
return super(String, String).read(b).decode(errors="replace")
2828

2929
def __new__(cls, value: str) -> bytes:
3030
return super().__new__(cls, value.encode())

0 commit comments

Comments
 (0)