Skip to content

Commit

Permalink
Fixed Trailing whitespace lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
HabibOmar committed Jun 30, 2024
1 parent 963cd39 commit 993f960
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/fairchem/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

from importlib.metadata import PackageNotFoundError, version

from fairchem.core import FAIRChemCalculator
from fairchem.core import FAIRChemCalculator

__all__ = ["FAIRChemCalculator "]
__all__ = ["FAIRChemCalculator"]

try:
__version__ = version("fairchem.core")
Expand Down
4 changes: 2 additions & 2 deletions src/fairchem/core/common/tutorial_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from yaml import dump

import fairchem.core as om
from fairchem.core import FAIRChemCalculator
from fairchem.core import FAIRChemCalculator


def fairchem_root():
Expand Down Expand Up @@ -146,7 +146,7 @@ def generate_yml_config(checkpoint_path, yml="run.yml", delete=(), update=()):
# see the output though, so I capture it.

with contextlib.redirect_stdout(StringIO()) as _:
config = FAIRChemCalculator (checkpoint_path=checkpoint_path).config
config = FAIRChemCalculator(checkpoint_path=checkpoint_path).config

for key in delete:
if key in config and len(key.split(".")) == 1:
Expand Down

0 comments on commit 993f960

Please sign in to comment.