Skip to content

Commit

Permalink
Remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
luismedel committed Dec 7, 2024
1 parent 018acc6 commit 77ad8ed
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/bluish/nodes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,20 +195,8 @@ def get_inherited_attr(
class InputOutputNode(Node):
def __init__(self, parent: Node, definition: Definition):
super().__init__(parent, definition)

self.sensitive_inputs: set[str] = {"password", "token"}

def log_inputs(self) -> None:
if not self.attrs._with:
return
info("with:")
for k, v in self.attrs._with.items():
v = self.expand_expr(v)
if k in self.sensitive_inputs:
info(f" {k}: ********")
else:
info(f" {k}: {safe_string(v)}")


class CircularDependencyError(Exception):
pass
Expand Down

0 comments on commit 77ad8ed

Please sign in to comment.