Skip to content

Commit ac4aa7d

Browse files
committed
Fix line length lint errors in batch setup
1 parent 5e482e0 commit ac4aa7d

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/matkit/cli.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,10 @@ def graspa_setup(cif, outdir, adsorbate, temp, pressure, cutoff, cycles):
9797
)
9898
@click.option("--cutoff", default=12.8, help="Cutoff radius in Angstrom.")
9999
@click.option("--cycles", default=1000, help="Number of MC cycles.")
100-
def graspa_batch_setup(cif_dir, outdir, adsorbate, temp, pressure, cutoff, cycles):
101-
"""Set up gRASPA simulations for all CIF x temperature x pressure combinations."""
100+
def graspa_batch_setup(
101+
cif_dir, outdir, adsorbate, temp, pressure, cutoff, cycles
102+
):
103+
"""Set up gRASPA simulations for all CIF x T x P."""
102104
from matkit.graspa import setup_batch
103105

104106
adsorbate_list = [{"MoleculeName": ads} for ads in adsorbate]

src/matkit/graspa/graspa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def setup_batch(
246246
n_cycle: int = 1000,
247247
template_dir: str = "template",
248248
) -> list[dict]:
249-
"""Set up gRASPA simulations for all CIF x temperature x pressure combinations.
249+
"""Set up gRASPA simulations for all CIF x T x P.
250250
251251
Discovers all .cif files in cif_dir and creates a simulation directory
252252
for each (CIF, temperature, pressure) combination using setup_simulation().

0 commit comments

Comments
 (0)