Get the username for this session
(self)
| 97 | return self._session_id |
| 98 | |
| 99 | def username(self) -> str: |
| 100 | """Get the username for this session""" |
| 101 | return self._username |
| 102 | |
| 103 | def query(self, query: str) -> QueryResult: |
| 104 | """ |
no outgoing calls
no test coverage detected