Skip to content

Commit 539ebee

Browse files
committed
pymcnp: fixed compile issues 2
1 parent d0847fc commit 539ebee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pymcnp/utils/_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def append(self, **additions):
8484
subattributes = attribute.split('.')
8585

8686
for i, _ in enumerate(subattributes[1:]):
87-
addend = eval(f'self.{'.'.join(subattributes[:-1-i])}').append(
87+
addend = eval(f'self.{".".join(subattributes[:-1-i])}').append(
8888
**{subattributes[-1 - i]: addend}
8989
)
9090

0 commit comments

Comments
 (0)