Skip to content

Commit

Permalink
fix misspelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaranow committed Nov 3, 2024
1 parent c923b87 commit a627664
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/bayes_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"metadata": {},
"outputs": [],
"source": [
"from laplacianb.LaplacianNB import LaplacianNB"
"from laplaciannb.LaplacianNB import LaplacianNB"
]
},
{
Expand Down
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions tests/bayes_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pandas as pd
from numpy.testing import assert_array_equal

from laplacianb.LaplacianNB import LaplacianNB
from laplaciannb.LaplacianNB import LaplacianNB


def test_bayes():
Expand Down Expand Up @@ -43,7 +43,7 @@ def test_rdkit():
from rdkit import Chem
from rdkit.Chem import AllChem

from src.laplacianb.LaplacianNB import LaplacianNB
from src.laplaciannb.LaplacianNB import LaplacianNB

def get_fp(smiles: str) -> set:
"""Function to calculate MorganFingerprint from smiles.
Expand Down Expand Up @@ -80,7 +80,7 @@ def test_joint_log_likelihood():
from rdkit import Chem
from rdkit.Chem import AllChem

from src.laplacianb.LaplacianNB import LaplacianNB
from src.laplaciannb.LaplacianNB import LaplacianNB

def get_fp(smiles: str) -> set:
"""Function to calculate MorganFingerprint from smiles.
Expand Down

0 comments on commit a627664

Please sign in to comment.