(self)
| 180 | organizations = relationship("Membership", back_populates="user") |
| 181 | |
| 182 | def __repr__(self): |
| 183 | return ( |
| 184 | f'<User(id="{self.id}", ' |
| 185 | f'name="{self.name}", ' |
| 186 | f'is_active="{self.is_active}", ' |
| 187 | f"organizations={self.organizations}" |
| 188 | f'email="{self.email}")>' |
| 189 | ) |
| 190 | |
| 191 | |
| 192 | class ProjectToken(Base): |
nothing calls this directly
no outgoing calls
no test coverage detected