Skip to content

Commit af0351e

Browse files
committed
Remove unused import.
1 parent aa1fc91 commit af0351e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

probability.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from utils import (
55
product, argmax, element_wise_product, matrix_multiplication,
66
vector_to_diagonal, vector_add, scalar_vector_product, inverse_matrix,
7-
weighted_sample_with_replacement, rounder, isclose, probability, normalize
7+
weighted_sample_with_replacement, isclose, probability, normalize
88
)
99
from logic import extend
1010

tests/test_probability.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import pytest
22
import random
33
from probability import * # noqa
4+
from utils import rounder
45

56

67
def tests():

0 commit comments

Comments
 (0)