(self)
| 222 | |
| 223 | @property |
| 224 | def is_restricted(self) -> str: |
| 225 | self.get_user_network_info() # has a 2sec cache, so print(user) will only call once |
| 226 | return self.__usrinfo__['restricted'] |
| 227 | |
| 228 | @property |
| 229 | def is_quota_exceeded(self) -> str: |
nothing calls this directly
no test coverage detected