Skip to content

Commit 5231e4f

Browse files
try skipping docstring on 32bit only.
1 parent 6cd77b2 commit 5231e4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tabpy/tabpy_tools/custom_query_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def get_doc_string(self):
7575
default_docstring = "-- no docstring found in query function --"
7676

7777
# Skip docstring parsing on Windows 32-bit systems
78-
if platform.system() == "Windows":
78+
if platform.system() == "Windows" and platform.architecture()[0] == "32bit":
7979
return default_docstring
8080

8181
docstring = getattr(self.custom_query, '__doc__', None)

0 commit comments

Comments
 (0)