Skip to content

Commit

Permalink
EXODUS.PY: See if this fixes ci build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Oct 27, 2023
1 parent 7df7cf1 commit 86f202d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/seacas/scripts/exodus3.in.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,10 +590,9 @@ def __init__(self, name, type, id):
self.entity_type = type
self.entity_id = id
self.values = []
self.variable_index = 0

def __repr__(self):
return "attribute(name=%r, entity_type=%r, entity_id=%r, values=%r, variable_index=%r)" % (self.name, self.entity_type, self.entity_id, self.values, self.variable_index)
return "attribute(name=%r, entity_type=%r, entity_id=%r, values=%r)" % (self.name, self.entity_type, self.entity_id, self.values)


class ex_attribute(ctypes.Structure):
Expand All @@ -614,8 +613,7 @@ class ex_attribute(ctypes.Structure):
("name", ctypes.c_char * 257),
("type", ctypes.c_int),
("value_count", ctypes.c_int),
("values", ctypes.c_void_p),
("varible_index", ctypes.c_int)]
("values", ctypes.c_void_p)]


class exodus:
Expand Down

0 comments on commit 86f202d

Please sign in to comment.