Add --status and --report flags

This commit is contained in:
Joscha
2021-05-23 22:41:59 +02:00
parent 27b5a8e490
commit edbd92dbbf
3 changed files with 26 additions and 0 deletions

View File

@ -75,6 +75,12 @@ class DefaultSection(Section):
def explain(self) -> bool:
return self.s.getboolean("explain", fallback=False)
def status(self) -> bool:
return self.s.getboolean("status", fallback=True)
def report(self) -> bool:
return self.s.getboolean("report", fallback=True)
class Config:
@staticmethod