diff options
Diffstat (limited to 'vk/platform.py')
-rw-r--r-- | vk/platform.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vk/platform.py b/vk/platform.py index 8bf23c5..5cd78b8 100644 --- a/vk/platform.py +++ b/vk/platform.py @@ -6,6 +6,7 @@ from enum import Enum import re + class Platform(Enum): MOBILE = 1 IPHONE = 2 @@ -43,6 +44,7 @@ class Platform(Enum): def get_descr_text_capitalized(self): return self._capitalize_first_letter(self.get_descr_text()) + _PLATFORM_DESCRIPTIONS = { Platform.MOBILE: '"mobile" web version (or unrecognized mobile app)', Platform.IPHONE: 'official iPhone app', |