also, you don't need to use `@property`. this coul...
# development
a
also, you don't need to use
@property
. this could be:
Copy code
@option('--some-flag', ...)
    def _some_logic(self, arg: int) -> bool:
        ... # do something with the `arg` and `self.get_options().some_flag`
which would then just be called as
self._some_logic(3)
(just as a normal method). but properties are nice