Skip to content

Commit 4bd2a80

Browse files
committed
chore: fix code style checks and code style.
1 parent 27a2605 commit 4bd2a80

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

pyproject.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,7 @@ build-backend = "setuptools.build_meta"
66
strict = true
77

88
[[tool.mypy.overrides]]
9-
module = [
10-
"hydra.*",
11-
"numpy.*",
12-
"pandas.*",
13-
"rdkit.*",
14-
"xxhash.*",
15-
]
9+
module = ["hydra.*", "numpy.*", "pandas.*", "rdkit.*", "xxhash.*"]
1610
ignore_missing_imports = true
1711

1812
[tool.isort]

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@ rdkit =
7676
rdkit>=2022.3.3
7777

7878
[flake8]
79-
extend-ignore = E501
79+
extend-ignore = E203,E501,E701
8080
exclude = __init__.py

tests/test_mixed_reaction_filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# (C) Copyright IBM Corp. 2022
44
# ALL RIGHTS RESERVED
55
import pytest
6-
76
from rxn.chemutils.reaction_equation import ReactionEquation
7+
88
from rxn.reaction_preprocessing import MixedReactionFilter
99
from rxn.reaction_preprocessing.mixed_reaction_filter import ReactionFilterError
1010

0 commit comments

Comments
 (0)