Skip to content

Commit

Permalink
Fix a minor typo in models component
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik4949 committed Mar 18, 2024
1 parent 21f28e1 commit a19ac2b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

#### Bug Fixes
- Fixed a bug in refresh_after_insert for listeners with select None
- Refactor graph internal with mapping
- Refactor graph internal with input mapping
- Fixed a bug in Component init
- Fixed a bug in predict in db for missing ouptuts
- Fixed a bug in variable set
Expand Down
1 change: 0 additions & 1 deletion superduperdb/components/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ def __init__(self, fn, predict_kwargs: t.Dict = {}):
for k in sig_keys:
if k in predict_kwargs or (k == 'kwargs' and sig.parameters[k].kind == 4):
continue
print(sig.parameters[k].kind)
params.append(k)

self.params = params
Expand Down

0 comments on commit a19ac2b

Please sign in to comment.