MCPcopy Create free account
hub / github.com/diffgram/diffgram / get

Method get

shared/database/action/workflow.py:143–150  ·  view source on GitHub ↗

Gets a single workflow by ID. :param session: :param workflow_id: :return:

(session, workflow_id: int)

Source from the content-addressed store, hash-verified

141
142 @staticmethod
143 def get(session, workflow_id: int):
144 """
145 Gets a single workflow by ID.
146 :param session:
147 :param workflow_id:
148 :return:
149 """
150 return session.query(Workflow).filter(Workflow.id == workflow_id).first()
151
152 @staticmethod
153 def get_by_id(session,

Callers 1

has_time_triggerMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected