mirror of
https://github.com/Tech-Workers-Coalition-Italia/mobilizon-reshare.git
synced 2025-02-18 04:30:53 +01:00
* introduced CommandConfig object * added dry_run for start command * added test to start_dry_run * added dry_run recap * fixed import * improved printing * fixed zulip debug info * improved recap dry-run print
7 lines
118 B
Python
7 lines
118 B
Python
import dataclasses
|
|
|
|
|
|
@dataclasses.dataclass
|
|
class CommandConfig:
|
|
dry_run: bool = dataclasses.field(default=False)
|