"wrappers/python/vscode:/vscode.git/clone" did not exist on "adfd84c27330f99c59a9e1c510c07473a7ac8a9b"
Commit 1c603b1a authored by John Chodera (MSKCC)'s avatar John Chodera (MSKCC)
Browse files

Fix uuid issue with TestForceField.

parent 9dd7fbd4
...@@ -258,8 +258,8 @@ class TestForceField(unittest.TestCase): ...@@ -258,8 +258,8 @@ class TestForceField(unittest.TestCase):
NOTE: We presume we have already loaded the force definitions into ForceField. NOTE: We presume we have already loaded the force definitions into ForceField.
""" """
# Generate a unique prefix name for generating parameters. # Generate a unique prefix name for generating parameters.
from uuid import UUID from uuid import uuid4
template_name = UUID() template_name = uuid4()
# Generate an atom type for each atom. # Generate an atom type for each atom.
for atom in residue.atoms(): for atom in residue.atoms():
parameters = { parameters = {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment