(name: str,
project_id: int,
session)
| 34 | |
| 35 | @staticmethod |
| 36 | def get(name: str, |
| 37 | project_id: int, |
| 38 | session): |
| 39 | |
| 40 | tag = session.query(Tag).filter( |
| 41 | Tag.name == name, |
| 42 | Tag.project_id == project_id).first() |
| 43 | |
| 44 | return tag |
| 45 | |
| 46 | @staticmethod |
| 47 | def get_by_id( |
no outgoing calls
no test coverage detected