Returns True is the instance is a null session.
(self, instance: object)
| 43 | return self.null_session_class() |
| 44 | |
| 45 | def is_null_session(self, instance: object) -> bool: |
| 46 | """Returns True is the instance is a null session.""" |
| 47 | return isinstance(instance, self.null_session_class) |
| 48 | |
| 49 | def get_cookie_name(self, app: Quart) -> str: |
| 50 | """Helper method to return the Cookie Name for the App.""" |
no outgoing calls
no test coverage detected