Skip to content

Commit

Permalink
remove whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
emmarothwell1 committed Apr 21, 2024
1 parent d3eec81 commit 7c64679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyop2/types/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def local_ises(self):
def layout_vec(self):
"""A PETSc Vec compatible with the dof layout of this DataSet."""
vec = PETSc.Vec().create(comm=self.comm)
size = ((self.size - self.set.constrained_size) * self.cdim , None)
size = ((self.size - self.set.constrained_size) * self.cdim, None)
vec.setSizes(size, bsize=self.cdim)
vec.setUp()
return vec
Expand Down

0 comments on commit 7c64679

Please sign in to comment.