Skip to content

Commit 1e2848f

Browse files
disable pylint warning for reimported
----------------------------- Co-authored-by: Ben Allred <ben.allred@qlik.com>
1 parent aa0c490 commit 1e2848f

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
command: |
2727
source ~/.virtualenvs/singer-python/bin/activate
2828
pip install pylint
29-
pylint singer --extension-pkg-whitelist=ciso8601 -d missing-docstring,broad-exception-raised,broad-exception-caught,bare-except,too-many-return-statements,too-many-branches,too-many-arguments,no-else-return,too-few-public-methods,fixme,protected-access,consider-using-f-string
29+
pylint singer --extension-pkg-whitelist=ciso8601 -d missing-docstring,broad-exception-raised,broad-exception-caught,bare-except,too-many-return-statements,too-many-branches,too-many-arguments,no-else-return,too-few-public-methods,fixme,protected-access,consider-using-f-string,reimported
3030
- run:
3131
name: 'Run Tests'
3232
command: |

singer/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@
6464
from singer.state import (
6565
set_bookmark,
6666
# for backwards compatibility, use set_bookmark instead
67-
# pylint: disable=reimported
6867
set_bookmark as write_bookmark,
6968
get_bookmark,
7069
clear_bookmark,

0 commit comments

Comments
 (0)