Skip to content

Commit c5be817

Browse files
committed
line length fix
1 parent 397cdd4 commit c5be817

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas_datareader/stooq.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ def _get_params(self, symbol, country="US"):
4747
elif symbol_parts[1].lower() == "pl":
4848
symbol = symbol_parts[0]
4949
else:
50-
if symbol_parts[1].lower() not in ["de", "hk", "hu", "jp", "uk", "us", "f"]:
50+
if symbol_parts[1].lower() not in [
51+
"de", "hk", "hu", "jp", "uk", "us", "f"
52+
]:
5153
symbol = ".".join([symbol, "US"])
5254

5355
params = {

0 commit comments

Comments
 (0)