From 1be1d7afc81559226747d568ed491d5a55150ff1 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 14 May 2024 09:49:20 +0200 Subject: 📝 update generated documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ishtar_common/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ishtar_common/utils.py') diff --git a/ishtar_common/utils.py b/ishtar_common/utils.py index d55687cd7..b23daf6ea 100644 --- a/ishtar_common/utils.py +++ b/ishtar_common/utils.py @@ -1357,11 +1357,11 @@ def get_all_related_objects(model): def num2col(n): - string = "" + strng = "" while n > 0: n, remainder = divmod(n - 1, 26) - string = chr(65 + remainder) + string - return string + strng = chr(65 + remainder) + strng + return strng RE_TSVECTOR = re.compile(r"('[^']+':\d+(?:,\d+)*)") -- cgit v1.2.3