Skip to content

Commit cc2fb74

Browse files
committed
Fix variable name change in CuboidMesh
1 parent 24a5130 commit cc2fb74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fidimag/common/cuboid_mesh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def check_size(self, system_memory_fake_for_testing=None):
273273
size_coordinates_GiB = size_coordinates_bytes / (1024. ** 3)
274274

275275
if system_memory_fake_for_testing is None:
276-
mem = virtual_memory().total / (1024.0 ** 3)
276+
mem_GiB = virtual_memory().total / (1024.0 ** 3)
277277
else:
278278
mem_GiB = system_memory_fake_for_testing
279279

0 commit comments

Comments
 (0)