Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Fix some valid issues identified with pylint
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Myjavec <[email protected]>
  • Loading branch information
pmyjavec committed Aug 24, 2021
1 parent 0dab121 commit d4b2ad7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,3 @@ repos:
entry: pylint
language: system
types: [python]
args:
- --errors-only
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ disable=print-statement,
backtick,
invalid-name,
long-suffix,
duplicate-code
duplicate-code,
old-ne-operator,
old-octal-literal,
import-star-module-level,
Expand Down
2 changes: 1 addition & 1 deletion kelpy/pod.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from kubernetes.client.exceptions import ApiException


def list(client, label_selector, namespace="default"):
def list_all(client, label_selector, namespace="default"):
try:
response = client.list_namespaced_pod(
namespace=namespace, label_selector=label_selector
Expand Down

0 comments on commit d4b2ad7

Please sign in to comment.