We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment, rail_from_grid_transition_map has some unexpected usage/behaviour:
instead of e.g. rail, rail_map, optionals = make_simple_rail() rail_gen = rail_from_grid_transition_map(rail_map=rail_map, optionals=optionals)
which results in AttributeError: 'numpy.ndarray' object has no attribute 'grid'
we have to use rail, rail_map, optionals = make_simple_rail() rail_gen = rail_from_grid_transition_map(rail_map=rail, optionals=optionals)
The text was updated successfully, but these errors were encountered:
def make_simple_rail() -> Tuple[GridTransitionMap, np.array]: .... return rail, rail_map, optionals
The return is not equal to the "typing" defintion. -
Sorry, something went wrong.
No branches or pull requests
At the moment, rail_from_grid_transition_map has some unexpected usage/behaviour:
instead of e.g.
rail, rail_map, optionals = make_simple_rail()
rail_gen = rail_from_grid_transition_map(rail_map=rail_map, optionals=optionals)
which results in
AttributeError: 'numpy.ndarray' object has no attribute 'grid'
we have to use
rail, rail_map, optionals = make_simple_rail()
rail_gen = rail_from_grid_transition_map(rail_map=rail, optionals=optionals)
The text was updated successfully, but these errors were encountered: