Skip to content

Commit

Permalink
sort imports update pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
aloctavodia committed Dec 2, 2024
1 parent ff60956 commit 10bed44
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions kulprit/projection/projector.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# pylint: disable=too-many-instance-attributes
"""Base projection class."""

from typing import Optional, Union, Sequence
import collections
from typing import Optional, Sequence, Union

import arviz as az
import bambi as bmb

import numpy as np

from kulprit.data.submodel import SubModel
from kulprit.projection.solver import solve
from kulprit.projection.pymc_io import (
compile_mllk,
compute_llk,
compute_new_model,
get_model_information,
)
from kulprit.projection.solver import solve


class Projector:
Expand Down
1 change: 0 additions & 1 deletion kulprit/projection/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import arviz as az
import numpy as np

from scipy.optimize import minimize


Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
black==22.3.0
pylint==2.16.2
pylint==3.1.0
pytest-cov>=2.6.1
pytest>=4.4.0
pre-commit>=2.19

0 comments on commit 10bed44

Please sign in to comment.