You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since __getattr__ is not overwritten as in BaseParallelEnvWrapper, the features defined in the Inner-layer wrappers are lost. For example, if I define a member name A1 in an AECEnv wrapper WA, and transfer the env into ParallelEnv using aec_to_parallel_wrapper, that is, par_env = aec_to_parallel_wrapper(WA(aec_env)), can I still access A1?
The text was updated successfully, but these errors were encountered:
Question
PettingZoo/pettingzoo/utils/conversions.py
Line 105 in ace3894
PettingZoo/pettingzoo/utils/conversions.py
Line 236 in ace3894
Since
__getattr__
is not overwritten as inBaseParallelEnvWrapper
, the features defined in the Inner-layer wrappers are lost. For example, if I define a member nameA1
in an AECEnv wrapperWA
, and transfer the env into ParallelEnv using aec_to_parallel_wrapper, that is,par_env = aec_to_parallel_wrapper(WA(aec_env))
, can I still accessA1
?The text was updated successfully, but these errors were encountered: