Skip to content

Commit

Permalink
chore: mypy.
Browse files Browse the repository at this point in the history
  • Loading branch information
callumtilbury committed Jul 23, 2024
1 parent 1c31b52 commit 766fab7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flashbax/buffers/prioritised_trajectory_buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ def make_prioritised_trajectory_buffer(
init_fn = functools.partial(
prioritised_init,
add_batch_size=add_batch_size,
max_length_time_axis=max_length_time_axis,
max_length_time_axis=max_length_time_axis, # type: ignore
period=period,
)
add_fn = functools.partial(
Expand Down
2 changes: 1 addition & 1 deletion flashbax/buffers/trajectory_buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ def make_trajectory_buffer(
init_fn = functools.partial(
init,
add_batch_size=add_batch_size,
max_length_time_axis=max_length_time_axis,
max_length_time_axis=max_length_time_axis, # type: ignore
)
add_fn = functools.partial(
add,
Expand Down

0 comments on commit 766fab7

Please sign in to comment.