We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40552cb commit 9ba7e69Copy full SHA for 9ba7e69
loopstructural/main/loopstructuralwrapper.py
@@ -120,9 +120,11 @@ def __init__(
120
)
121
fault_properties = None
122
if len(faults) > 0:
123
-
+
124
fault_properties = pd.DataFrame(faults)
125
+ fault_properties['fault_name'] = fault_properties['fault_name'].astype(str)
126
fault_properties = fault_properties.set_index('fault_name')
127
+ fault_data['fault_name'] = fault_data['fault_name'].astype(str)
128
super().__init__(
129
contacts=contact_locations,
130
stratigraphic_order=stratigraphic_order,
0 commit comments