We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9819d4f commit e0d1d29Copy full SHA for e0d1d29
stream_simulator/world.py
@@ -379,6 +379,9 @@ def actors_lookup(self):
379
}
380
for type_ in self.actors:
381
actors = self.actors[type_]
382
+ if type_ not in mapping:
383
+ self.logger.error("Actor type %s does not exist", type_)
384
+ continue
385
for act in actors:
386
c = mapping[type_](conf = act, package = p, precision_mode = self.precision_mode)
387
if c.name in self.actors:
0 commit comments