From 7b8cc8a9f455eda41b9c7d70f4561a84fcda941e Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 23 Dec 2019 07:20:36 +0300 Subject: pylint/pep8 fixes --- vk/platform.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vk/platform.py') 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', -- cgit v1.2.3