Skip to content

Commit 60bc3cc

Browse files
committed
Reformat
1 parent 9642a44 commit 60bc3cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymvr/value.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def __repr__(self):
104104

105105
def to_xml(self, parent):
106106
u, v, w, x = self.matrix
107-
matrix_str = f"{{{u[0]},{u[1]},{u[2]}}}{{{v[0]},{v[1]},{v[2]}}}{{{w[0]},{w[1]},{w[2]}}}{{{x[0]/0.001},{x[1]/0.001},{x[2]/0.001}}}"
107+
matrix_str = f"{{{u[0]},{u[1]},{u[2]}}}{{{v[0]},{v[1]},{v[2]}}}{{{w[0]},{w[1]},{w[2]}}}{{{x[0] / 0.001},{x[1] / 0.001},{x[2] / 0.001}}}"
108108
matrix = ElementTree.SubElement(parent, type(self).__name__)
109109
matrix.text = matrix_str
110110

0 commit comments

Comments
 (0)