Skip to content

Commit

Permalink
Fix default kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanradev93 committed May 28, 2024
1 parent 732ac09 commit 634ffd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(
):
super().__init__()

self.transform = find_transform(transform, **kwargs.pop("transform_settings"))
self.transform = find_transform(transform, **kwargs.pop("transform_settings", {}))
self.half_dim = half_dim
self.subnet = find_subnet(
subnet=subnet_builder,
Expand Down

0 comments on commit 634ffd2

Please sign in to comment.