Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorhansen committed Nov 27, 2023
1 parent 48eb67e commit cc30002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ async def server(
)
q_values = None
ranked_actions = tf.squeeze(ranked_actions, axis=1)
hiddens |= zip(keys, zip(*map(tf.unstack, new_hiddens)))
hiddens |= zip(keys, map(list, zip(*map(tf.unstack, new_hiddens))))

ranked_actions = decode_action_rankings(ranked_actions)
if q_values is not None:
Expand Down

0 comments on commit cc30002

Please sign in to comment.