Skip to content

Commit

Permalink
try skipping docstring on 32bit only.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeichikawasalesforce committed Nov 21, 2024
1 parent 6cd77b2 commit 5231e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabpy/tabpy_tools/custom_query_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def get_doc_string(self):
default_docstring = "-- no docstring found in query function --"

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

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

0 comments on commit 5231e4f

Please sign in to comment.