Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr0p42 committed Mar 18, 2024
1 parent d74185d commit 1fb7703
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions naas/secret.py
Expand Up @@ -21,6 +21,7 @@ def __get_remote_secret(self, name: str):
return None
# noqa: E722
except Exception as e:
e = e
print("Secret get failed. Please retry again in few seconds.")
return None

Expand All @@ -37,6 +38,7 @@ def __create_remote_secret(self, name: str, value: str):
return False
# noqa: E722
except Exception as e:
e = e
print("Secret creation failed. Please retry again in few seconds.")
return False

Expand All @@ -53,6 +55,7 @@ def __create_remote_bulk_secret(self, secrets: str):
return False
# noqa: E722
except Exception as e:
e = e
print("Secret creation failed. Please retry again in few seconds.")
return False

Expand All @@ -68,6 +71,7 @@ def __delete_remote_secret(self, name: str):
return False
# noqa: E722
except Exception as e:
e = e
# print("Secret not found")
return False

Expand Down

0 comments on commit 1fb7703

Please sign in to comment.