-- Given this, my initial thought was to annotate...
# development
h
-- Given this, my initial thought was to annotate
@rule
decorators, like this:
Copy code
@rule(max_retries=3)
def test(...):
   ...
However, this violates assumption 4. There is no way to do this:
Copy code
@rule(max_retries=Test.Options.max_retries)
def test(...):
  ...