Skip to content

Commit

Permalink
fixing linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
FMcil committed Sep 25, 2024
1 parent ff1e4af commit e187d31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/mofdscribe/featurizers/chemistry/energygrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@ def __init__(
super().__init__(primitive=primitive)

def fit_transform(self, structures: List[Union[Structure, IStructure]]):
...
pass

def fit(self, structure: Union[Structure, IStructure]):
...
pass

def _get_grid(self):
return np.arange(self.min_energy_vdw, self.max_energy_vdw, self.bin_size_vdw)
Expand Down
1 change: 0 additions & 1 deletion tests/featurizers/bu/test_rdkit_adaptor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-
"""Test the RDkitAdaptor."""
import numpy as np
from rdkit.Chem.Descriptors3D import Asphericity

from mofdscribe.featurizers.bu.rdkitadaptor import RDKitAdaptor
Expand Down

0 comments on commit e187d31

Please sign in to comment.