Skip to content

Commit

Permalink
Remove deprecated pylint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Sniperik committed Oct 5, 2023
1 parent 851c929 commit d47a610
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 60 deletions.
14 changes: 2 additions & 12 deletions fiftyone_devicedetection/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -168,16 +168,6 @@ enable=F,
bad-string-format-type,
bad-str-strip-call,
invalid-envvar-value,
print-statement,
parameter-unpacking,
unpacking-in-except,
old-raise-syntax,
backtick,
long-suffix,
old-ne-operator,
old-octal-literal,
import-star-module-level,
non-ascii-bytes-literal,
yield-inside-async-function,
not-async-context-manager,
fatal,
Expand Down Expand Up @@ -635,5 +625,5 @@ preferred-modules=

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception
14 changes: 2 additions & 12 deletions fiftyone_devicedetection_cloud/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -168,16 +168,6 @@ enable=F,
bad-string-format-type,
bad-str-strip-call,
invalid-envvar-value,
print-statement,
parameter-unpacking,
unpacking-in-except,
old-raise-syntax,
backtick,
long-suffix,
old-ne-operator,
old-octal-literal,
import-star-module-level,
non-ascii-bytes-literal,
yield-inside-async-function,
not-async-context-manager,
fatal,
Expand Down Expand Up @@ -635,5 +625,5 @@ preferred-modules=

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception
14 changes: 2 additions & 12 deletions fiftyone_devicedetection_examples/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -168,16 +168,6 @@ enable=F,
bad-string-format-type,
bad-str-strip-call,
invalid-envvar-value,
print-statement,
parameter-unpacking,
unpacking-in-except,
old-raise-syntax,
backtick,
long-suffix,
old-ne-operator,
old-octal-literal,
import-star-module-level,
non-ascii-bytes-literal,
yield-inside-async-function,
not-async-context-manager,
fatal,
Expand Down Expand Up @@ -635,5 +625,5 @@ preferred-modules=

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception
14 changes: 2 additions & 12 deletions fiftyone_devicedetection_onpremise/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -168,16 +168,6 @@ enable=F,
bad-string-format-type,
bad-str-strip-call,
invalid-envvar-value,
print-statement,
parameter-unpacking,
unpacking-in-except,
old-raise-syntax,
backtick,
long-suffix,
old-ne-operator,
old-octal-literal,
import-star-module-level,
non-ascii-bytes-literal,
yield-inside-async-function,
not-async-context-manager,
fatal,
Expand Down Expand Up @@ -635,5 +625,5 @@ preferred-modules=

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception
14 changes: 2 additions & 12 deletions fiftyone_devicedetection_shared/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -168,16 +168,6 @@ enable=F,
bad-string-format-type,
bad-str-strip-call,
invalid-envvar-value,
print-statement,
parameter-unpacking,
unpacking-in-except,
old-raise-syntax,
backtick,
long-suffix,
old-ne-operator,
old-octal-literal,
import-star-module-level,
non-ascii-bytes-literal,
yield-inside-async-function,
not-async-context-manager,
fatal,
Expand Down Expand Up @@ -635,5 +625,5 @@ preferred-modules=

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception

0 comments on commit d47a610

Please sign in to comment.