(session, project_string_id: str)
| 663 | return tag_list |
| 664 | |
| 665 | def get_project(session, project_string_id: str): |
| 666 | return session.query(Project).filter( |
| 667 | Project.project_string_id == project_string_id).first() |
| 668 | |
| 669 | @staticmethod |
| 670 | def get_by_string_id(session, project_string_id: str): |
no outgoing calls
no test coverage detected