Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 25, 2024
1 parent 02b5830 commit 3a87cf6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions openfe_gromacs/protocols/gromacs_md/md_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
import pathlib
import subprocess
import uuid
import warnings
from collections import defaultdict
from collections.abc import Iterable
from typing import Any
import warnings

import gmxapi as gmx
import gufe
Expand Down Expand Up @@ -796,11 +796,12 @@ def _create_interchange(self, settings, components, shared_basepath):
"""
# Set the environment variable for using the experimental interchange
# functionality `from_openmm` and raise a warning
os.environ['INTERCHANGE_EXPERIMENTAL'] = "1"
os.environ["INTERCHANGE_EXPERIMENTAL"] = "1"
war = (
"Environment variable INTERCHANGE_EXPERIMENTAL=1 is set for using "
"the interchange functionality 'from_openmm' which is not well "
"tested yet.")
"tested yet."
)
warnings.warn(war)
# Create the stateA system
# Create a dictionary of OFFMol for each SMC for bookkeeping
Expand Down

0 comments on commit 3a87cf6

Please sign in to comment.