diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-05-14 09:49:20 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-05-27 14:42:13 +0200 |
commit | 1be1d7afc81559226747d568ed491d5a55150ff1 (patch) | |
tree | 376f4554691a455304a669b3ccda92ef16861395 /ishtar_common | |
parent | 78a293c9959c17505ea478c578a348348145d734 (diff) | |
download | Ishtar-1be1d7afc81559226747d568ed491d5a55150ff1.tar.bz2 Ishtar-1be1d7afc81559226747d568ed491d5a55150ff1.zip |
📝 update generated documentation
Diffstat (limited to 'ishtar_common')
-rw-r--r-- | ishtar_common/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
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+)*)") |