v1.1.2
Description
Patches for several bugs in v1.1.1.
Release notes
Minor features:
- Every
AgentBrain
had a package private attributeself._state
, this is now a public attribute:self.state
.
Bugs fixed:
- Formatted the code of HumanAgentBrain to the Python standards (only styling, no refactors).
- Fixed a bug where the
State
object of anAgentBrain
always said a key was present, even when it was not (#195). - Fixed a bug where a utility/helper function,
utils._flatten_dict
, of MATRX was private instead of package private, causing MATRX to crash when calling this method (#218). - Fixed a bug that caused the
Navigator
to raise an (inappropriate) exception when a route to some waypoint could not be found because it was blocked. Now raises a more informative RunTimeWarning instead (#219).