8000 Remove unnecessary mypy ignore · mysql/mysql-connector-python@22f5f52 · GitHub
[go: up one dir, main page]

Skip to content

Commit 22f5f52

Browse files
committed
Remove unnecessary mypy ignore
1 parent 981684d commit 22f5f52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mysql/connector/plugins/authentication_kerberos_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def get_store() -> dict:
101101
"""
102102
krb5ccname = os.environ.get(
103103
"KRB5CCNAME",
104-
f"/tmp/krb5cc_{os.getuid()}" # type: ignore[attr-defined]
104+
f"/tmp/krb5cc_{os.getuid()}"
105105
if os.name == "posix"
106106
else Path("%TEMP%").joinpath("krb5cc"),
107107
)

0 commit comments

Comments
 (0)
0