Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ladinesa committed Jan 19, 2024
1 parent b694581 commit b2a4fa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies = [
]

[project.urls]
homepage = "https://github.com/nomad-coe/nomad-schema-run-plugin"
homepage = "https://github.com/nomad-coe/nomad-schema-plugin-run.git"

[project.optional-dependencies]
dev = [
Expand Down
2 changes: 1 addition & 1 deletion runschema/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def to_ase(self, raise_exp: bool = False):
return Atoms(
symbols=self.labels,
positions=self.positions.to(ureg.angstroms).m,
cell=self.lattice_vectors.to(ureg.angstroms).m,
cell=self.lattice_vectors.to(ureg.angstroms).m if self.lattice_vectors is not None else None,
pbc=self.periodic
)
except Exception as e:
Expand Down

0 comments on commit b2a4fa1

Please sign in to comment.