Skip to content

Commit 3b82557

Browse files
committed
Fix: modify subscript 'tuple' to 'Tuple'
1 parent 1c9e49a commit 3b82557

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymysqlreplication/binlogstream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ReportSlave(object):
3939
"""Represent the values that you may report when connecting as a slave
4040
to a master. SHOW SLAVE HOSTS related"""
4141

42-
def __init__(self, value: Union[str, tuple[str, str, str, int]]) -> None:
42+
def __init__(self, value: Union[str, Tuple[str, str, str, int]]) -> None:
4343
"""
4444
Attributes:
4545
value: string or tuple

0 commit comments

Comments
 (0)