Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
aloctavodia committed Mar 20, 2024
1 parent 41e6808 commit 1003a70
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kulprit/projection/solver.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""optimization module."""

# pylint: disable=protected-access
from typing import List, Optional
import warnings

Expand Down Expand Up @@ -37,7 +38,7 @@ def __init__(
self.num_samples = self.num_chain * 100

if self.ref_family not in ["gaussian", "poisson", "bernoulli", "binomial"]:
raise (NotImplementedError(f"Family {self.ref_family} not supported"))
raise NotImplementedError(f"Family {self.ref_family} not supported")

@property
def pps(self):
Expand Down

0 comments on commit 1003a70

Please sign in to comment.