(self)
| 7135 | return SessionSizes(sizes) |
| 7136 | |
| 7137 | def to_dict(self) -> dict: |
| 7138 | result: dict = {} |
| 7139 | result["sizes"] = from_dict(from_int, self.sizes) |
| 7140 | return result |
| 7141 | |
| 7142 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 7143 | class SessionSource(Enum): |
nothing calls this directly
no test coverage detected