add a field: ```class Restartable(BoolField): ...
# development
w
add a field:
Copy code
class Restartable(BoolField):
    alias = "restartable"
    default = False
    help = ("If true, runs of this target may be interrupted and "
            "restarted when its input files change.")
…generically to `Target`s which will be used with
RunFieldSet