Skip to content

Commit d40914e

Browse files
committed
Internal quote consistency
1 parent 8e2f962 commit d40914e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wrap/gtwrap/xml_parser/xml_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def extract_docstring(self, xml_folder: str, cpp_class: str, cpp_method: str, me
136136
# in GTSAM becomes Eigen::Matrix in the pybind11 code.
137137
documenting_index = 0
138138
if len(member_defs) > 1:
139-
function_key = f'{cpp_class}.{cpp_method}({",".join(method_args_names) if method_args_names else ""})'
139+
function_key = f"{cpp_class}.{cpp_method}({','.join(method_args_names) if method_args_names else ''})"
140140
if function_key in self._memory:
141141
self._memory[function_key] += 1
142142
documenting_index = self._memory[function_key]

0 commit comments

Comments
 (0)