Skip to content

Commit 6960d27

Browse files
committed
CLN: Remove list from default arg
Replace list with tuple
1 parent db29621 commit 6960d27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas_datareader/tsp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ class TSPReader(_BaseReader):
2727
"""
2828

2929
def __init__(self,
30-
symbols=['Linc', 'L2020', 'L2030', 'L2040',
31-
'L2050', 'G', 'F', 'C', 'S', 'I'],
30+
symbols=('Linc', 'L2020', 'L2030', 'L2040',
31+
'L2050', 'G', 'F', 'C', 'S', 'I'),
3232
start=None, end=None, retry_count=3, pause=0.001,
3333
session=None):
3434
super(TSPReader, self).__init__(symbols=symbols,

0 commit comments

Comments
 (0)