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 9a92d01 commit de2f298Copy full SHA for de2f298
vaspy/atomco.py
@@ -154,7 +154,7 @@ def get_poscar_content(self, **kwargs):
154
tf = kwargs.get("tf", default_tf)
155
data_tf = ''
156
for data, tf in zip(self.data.tolist(), tf.tolist()):
157
- data_tf += ("{:18.12f}"*3+"{:5s}"*3+"\n").format(*(data+tf))
+ data_tf += ("{:18.12f}"*3 + " " + "{:5s}"*3 + "\n").format(*(data+tf))
158
159
# merge all strings
160
content += (bases_const + bases + atom_types + atom_numbers +
0 commit comments