(self)
| 241 | return self._user |
| 242 | |
| 243 | def get_linked_user(self) -> user.User: |
| 244 | # backwards compatibility with v1 |
| 245 | |
| 246 | # To avoid inconsistencies with "connect" and "get", this function was renamed |
| 247 | return self.connect_linked_user() |
| 248 | |
| 249 | def set_country(self, country: str = "Antarctica"): |
| 250 | """ |
nothing calls this directly
no test coverage detected