Skip to content

Commit c9d918c

Browse files
author
Alan Christie
committed
- Corrected import statements
(pipelines.utils -> pipelines_utils) (from pipelines.rdkit import mol_utils -> import mol_utils)
1 parent c51be76 commit c9d918c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/python/rdkit_utils/filter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
import argparse
1818
from rdkit.Chem import Descriptors
19-
from pipelines.utils import utils
20-
from pipelines.rdkit import mol_utils
19+
from pipelines_utils import utils
20+
import mol_utils
2121

2222

2323
### start function definitions #########################################

src/python/rdkit_utils/mol_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import logging
1818
from rdkit import Chem
1919
from rdkit.Chem import Descriptors
20-
from pipelines.utils import utils
20+
from pipelines_utils import utils
2121

2222
def fragment(mol, mode, quiet=False):
2323
frags = Chem.GetMolFrags(mol, asMols=True)

src/python/rdkit_utils/sdf2json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import argparse
1818

19-
from pipelines.utils import utils
19+
from pipelines_utils import utils
2020

2121

2222
def main():

src/python/rdkit_utils/splitter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import argparse
1818

19-
from pipelines.utils import utils
19+
from pipelines_utils import utils
2020

2121

2222
def main():

0 commit comments

Comments
 (0)