Return an active instance of Session.
()
| 26 | |
| 27 | @staticmethod |
| 28 | def get() -> Session: |
| 29 | """Return an active instance of Session.""" |
| 30 | if Session.instance is None: |
| 31 | Session.instance = Session.new() |
| 32 | return Session.instance |
| 33 | |
| 34 | @staticmethod |
| 35 | def get_response(session: Session, result: Gio.AsyncResult): |
no test coverage detected