MCPcopy Index your code
hub / github.com/diffgram/diffgram / get

Method get

shared/database/source_control/working_dir.py:290–298  ·  view source on GitHub ↗
(
        session,
        directory_id,
        project_id)

Source from the content-addressed store, hash-verified

288
289 @staticmethod
290 def get(
291 session,
292 directory_id,
293 project_id):
294
295 directory = session.query(WorkingDir).filter(
296 WorkingDir.project_id == project_id,
297 WorkingDir.id == directory_id).first()
298 return directory
299
300 @staticmethod
301 def get_by_id(

Calls

no outgoing calls

Tested by

no test coverage detected