Skip to content

Commit e4390d1

Browse files
committed
update pylint rc
1 parent f4d63fb commit e4390d1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ persistent=yes
3838

3939
# When enabled, pylint would attempt to guess common misconfiguration and emit
4040
# user-friendly hints instead of false-positive error messages.
41-
suggestion-mode=yes
41+
# suggestion-mode=yes
4242

4343
# Allow loading of arbitrary C extensions. Extensions are imported into the
4444
# active Python interpreter and may run arbitrary code.

cterasdk/cli/dav.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async def download(invitation, resource, objects=None, archive=False, destinatio
6363
if args.src:
6464
print(f"error: object not found error: '{args.src}'", file=sys.stderr)
6565
sys.exit(1)
66-
resource = await invitation.files.listdir().__anext__()
66+
resource = await invitation.files.listdir().__anext__() # pylint: disable=unnecessary-dunder-call
6767
jobs.append(download(invitation, resource, destination=target))
6868
else:
6969
try:

0 commit comments

Comments
 (0)