Skip to content

Commit

Permalink
remove breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeebru committed Jul 24, 2024
1 parent b1abf83 commit c9ca08b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/bitwarden_workflow_linter/rules/underscore_outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,10 @@ def fn(self, obj: Union[Workflow, Job, Step]) -> Tuple[bool, str]:

if isinstance(obj, Workflow):
if obj.on.get("workflow_dispatch"):
breakpoint()
outputs.extend(obj.on["workflow_dispatch"]["outputs"].keys())

# if obj.on.get("workflow_call"):
# outputs.extend(obj.on["workflow_call"]["outputs"].keys())
if obj.on.get("workflow_call"):
outputs.extend(obj.on["workflow_call"]["outputs"].keys())

if isinstance(obj, Job):
if obj.outputs:
Expand Down

0 comments on commit c9ca08b

Please sign in to comment.