Skip to content

Commit f0edebc

Browse files
committed
added init in utils and mypied
1 parent b571b66 commit f0edebc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

molpipeline/experimental/uncertainty/conformal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ def set_params(self, **params: Any) -> "BaseConformalPredictor":
139139
Self.
140140
141141
"""
142-
estimator_params = {}
143-
our_params = {}
142+
estimator_params: dict[str, Any] = {}
143+
our_params: dict[str, Any] = {}
144144

145145
for key, value in params.items():
146146
if key.startswith("estimator__"):

molpipeline/utils/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Utility functions and classes for molpipeline."""

0 commit comments

Comments
 (0)