We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
numfocus
Learn more about funding links in repositories.
Report abuse
1 parent df8acf4 commit b2167e4Copy full SHA for b2167e4
pandas/_config/localization.py
@@ -45,9 +45,7 @@ def set_locale(
45
locale.setlocale(lc_var, new_locale)
46
normalized_locale = locale.getlocale()
47
if all(x is not None for x in normalized_locale):
48
- # error: Argument 1 to "join" of "str" has incompatible type
49
- # "Tuple[Optional[str], Optional[str]]"; expected "Iterable[str]"
50
- yield ".".join(normalized_locale) # type: ignore[arg-type]
+ yield ".".join(str(x) for x in normalized_locale)
51
else:
52
yield new_locale
53
finally:
0 commit comments