Skip to content

Commit

Permalink
Make pylint happy (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
koszti authored Nov 5, 2020
1 parent 2f255a9 commit b258b2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ install: check_prereqs
python3 -m pip install -e '.[dev]'

pylinting:
pylint singer -d missing-docstring,broad-except,bare-except,too-many-return-statements,too-many-branches,too-many-arguments,no-else-return,too-few-public-methods,fixme,protected-access
pylint singer --extension-pkg-whitelist=ciso8601 -d missing-docstring,broad-except,bare-except,too-many-return-statements,too-many-branches,too-many-arguments,no-else-return,too-few-public-methods,fixme,protected-access

test:
nosetests --with-doctest -v
2 changes: 1 addition & 1 deletion singer/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self, errors):
msg = "Errors during transform\n\t{}".format("\n\t".join(estrs))
msg += "\n\n\nErrors during transform: [{}]".format(", ".join(estrs))

super(SchemaMismatch, self).__init__(msg)
super().__init__(msg)

class SchemaKey:
ref = "$ref"
Expand Down

0 comments on commit b258b2e

Please sign in to comment.