Skip to content

Commit

Permalink
Fix nested value argument in foam dtypes printing
Browse files Browse the repository at this point in the history
  • Loading branch information
sayerhs committed Jan 23, 2024
1 parent 86837b4 commit c5ad60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caelus/io/dtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def __init__(self, value, semi=True):
self.value = value
self.semi = semi

def write_value(self, fh=sys.stdout, indent_str=''):
def write_value(self, fh=sys.stdout, indent_str='', nested=False):
"""Write standalone macro substitution"""
if self.semi:
fh.write(indent_str + "%s;\n" % self.value)
Expand Down

0 comments on commit c5ad60f

Please sign in to comment.