Skip to content

Commit ff61ee4

Browse files
style: fix linting errors
1 parent ccaff0e commit ff61ee4

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

discretesampling/base/algorithms/mcmc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import math
22
import copy
3-
import numpy as np
43
from discretesampling.base.random import RNG
54
from discretesampling.base.output import MCMCOutput
65

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from .base import BaseOutput # no qa
2-
from .smc_output import SMCOutput # no qa
3-
from .mcmc_output import MCMCOutput # no qa
1+
from .base import BaseOutput # noqa
2+
from .smc_output import SMCOutput # noqa
3+
from .mcmc_output import MCMCOutput # noqa

tests/test_smc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import pytest
22
import numpy as np
33
from discretesampling.base.algorithms import DiscreteVariableSMC
4-
from discretesampling.base.util import gather_all
54
from discretesampling.base.executor.executor_MPI import Executor_MPI
65
from discretesampling.domain import spectrum
76
from discretesampling.base.output import SMCOutput

0 commit comments

Comments
 (0)