Calling super().__init__() start the step function immediately and not wait for Train function

  • Low: It annoys or frustrates me for a moment.
  • Medium: It contributes to significant difficulty to complete my task, but I can work around it.

class CustomgMultiAgentEnv(MultiAgentEnv):
super().init()

If we call config.build(), it immediately starts stepping before we call Train. But commenting out the super, it does not, and I can call Train down the lines in the code. Is it expected?