Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Didn't mean to remove that
  • Loading branch information
RunDevelopment committed Apr 7, 2023
commit 2de45d61bb7caec330303b4276856988669949bb
3 changes: 3 additions & 0 deletions backend/src/nodes/properties/outputs/file_outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ class FileOutput(BaseOutput):
def __init__(self, file_type: expression.ExpressionJson, label: str):
super().__init__(file_type, label)

def get_broadcast_data(self, value: str):
return value

def enforce(self, value) -> str:
assert isinstance(value, str)
return value
Expand Down