From e7437310ea188332cb690da06439d017866826db Mon Sep 17 00:00:00 2001 From: Alexander Graf <17130992+aandergr@users.noreply.github.com> Date: Mon, 11 May 2020 20:24:04 +0200 Subject: [PATCH] Add versionadded doc annotation for is_business_account and business_category_name --- instaloader/structures.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/instaloader/structures.py b/instaloader/structures.py index 2cc2a0d..bced2b7 100644 --- a/instaloader/structures.py +++ b/instaloader/structures.py @@ -656,10 +656,12 @@ class Profile: @property def is_business_account(self) -> bool: + """.. versionadded:: 4.4""" return self._metadata('is_business_account') @property def business_category_name(self) -> str: + """.. versionadded:: 4.4""" return self._metadata('business_category_name') @property