Skip to content

Commit 8a1d738

Browse files
committed
fix too-many-positional-arguments error and other issues
* Make all types as immutable class by dataclass. * Replace 'Type | None' as 'Optional[Type]' Signed-off-by: Bala.FA <[email protected]>
1 parent 94b1193 commit 8a1d738

32 files changed

+2420
-2994
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ getdeps:
77

88
check: getdeps
99
@echo "Running checks"
10-
@pylint --reports=no --score=no --disable=R0401,R0801,R0917 minio/*py minio/credentials tests/functional
10+
@pylint --reports=no --score=no --disable=R0401,R0801 minio/*py minio/credentials tests/functional
1111
@isort --diff .
1212
@find . -name "*.py" -exec autopep8 --diff --exit-code {} +
1313
@mypy minio

0 commit comments

Comments
 (0)