Skip to content

Commit

Permalink
Remove pdbp import from init files
Browse files Browse the repository at this point in the history
  • Loading branch information
timmens committed Nov 13, 2024
1 parent 060337d commit f1276f2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions src/estimagic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
import warnings
from dataclasses import dataclass

try:
import pdbp # noqa: F401
except ImportError:
pass

from estimagic import utilities
from estimagic.bootstrap import BootstrapResult, bootstrap
from estimagic.estimate_ml import LikelihoodResult, estimate_ml
Expand Down
5 changes: 0 additions & 5 deletions src/optimagic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
from __future__ import annotations

try:
import pdbp # noqa: F401
except ImportError:
pass

from optimagic import constraints, mark, utilities
from optimagic.algorithms import algos
from optimagic.benchmarking.benchmark_reports import (
Expand Down

0 comments on commit f1276f2

Please sign in to comment.