Skip to content

Commit

Permalink
column_names: Minor fixes for clarity, PEP8 (iss #25)
Browse files Browse the repository at this point in the history
  • Loading branch information
astrochun committed Feb 20, 2020
1 parent 7330e45 commit fcf3e0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Metallicity_Stack_Commons/column_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def merge_column_names(*args):
:return merge_list:
"""

merge_list = []
merge_list = list()

arg_count = len(args)
if arg_count > 0:
Expand All @@ -60,4 +60,4 @@ def remove_from_list(list0, remove_entries):
for entry in remove_entries:
dup_list0.remove(entry)

return dup_list0
return dup_list0

0 comments on commit fcf3e0e

Please sign in to comment.