Reload this option from its environment variable
(self)
| 118 | return self._current |
| 119 | |
| 120 | def reload(self) -> None: |
| 121 | """Reload this option from its environment variable""" |
| 122 | self.set_current(os.environ.get(self._name, self._default)) |
| 123 | |
| 124 | def unset(self) -> None: |
| 125 | """Remove the current value, the default will be used until it is set again.""" |