9 lines
271 B
Python
9 lines
271 B
Python
from ai_economist.foundation.base.registrar import Registry
|
|
from ai_economist.foundation.entities.endogenous import Endogenous, endogenous_registry
|
|
|
|
|
|
@endogenous_registry.add
|
|
class Noop(Endogenous):
|
|
"""consecutive noop actions performed by actor"""
|
|
|
|
name = "Noop" |