Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Commit

Permalink
fix lint error'
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Jan 24, 2019
1 parent aa5a432 commit 08a03e8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyEX/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ def _strToList(st):


def _strCommaSeparatedString(st):
l = _strToList(st)
return ','.join(l)
return ','.join(_strToList(st))


def _strOrDate(st):
Expand Down

0 comments on commit 08a03e8

Please sign in to comment.