Skip to content

Commit

Permalink
Fix code style issues with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed May 16, 2024
1 parent b16b6fd commit 113a5d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transformato/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def _generate_openMM_system(self, env: str, lambda_state: int) -> Simulation:
psf = AmberPrmtopFile(psf_file_path)
# generate simulations object and set states
if not isinstance(self.configuration["simulation"]["GPU"], bool):
if self.configuration["simulation"]["GPU"].upper() == "OPENCL":
if self.configuration["simulation"]["GPU"].upper() == "OPENCL":
logger.info(
"We are using the OpenCL platform for the analysis as specified in the yaml file"
)
Expand Down

0 comments on commit 113a5d4

Please sign in to comment.