8 lines
159 B
Python
8 lines
159 B
Python
def commit(
|
|
dry_run: bool = False,
|
|
force: bool = False,
|
|
no_apply: bool = False,
|
|
no_commit: bool = False,
|
|
):
|
|
print("Commit, force:", force)
|