Skip to content

Commit 6ce0fe1

Browse files
committed
Fix pylama
1 parent 4fdae46 commit 6ce0fe1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pylibs/pylama/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ def prepare_params(*configs, **params):
110110
:return dict:
111111
112112
"""
113-
params['ignore'] = params.get('ignore') or []
114-
params['select'] = params.get('select') or []
113+
params['ignore'] = list(params.get('ignore') or [])
114+
params['select'] = list(params.get('select') or [])
115115

116116
for config in filter(None, configs):
117117
for key in ('ignore', 'select'):

0 commit comments

Comments
 (0)