We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0708584 commit 4a829dbCopy full SHA for 4a829db
python/damask/_result.py
@@ -189,10 +189,11 @@ def __repr__(self) -> str:
189
Give short, human-readable summary.
190
"""
191
with h5py.File(self.fname,'r') as f:
192
- header = [f'Created by {f.attrs["creator"]}',
193
- f' on {f.attrs["created"]}',
194
- f' executing "{f.attrs["call"]}"']
195
- header = list(map(util.deemph,header))
+ header = list(map(util.deemph,[
+ f'Created by {f.attrs["creator"]}',
+ f' on {f.attrs["created"]}',
+ f' executing "{f.attrs["call"]}"',
196
+ ]))
197
visible_increments = self._visible['increments']
198
199
first = self.view(increments=visible_increments[0:1]).list_data()
0 commit comments