We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd21c8d commit e9c583eCopy full SHA for e9c583e
branchwrite.py
@@ -82,9 +82,9 @@ def __write_content(self,content):
82
83
def main():
84
args = sys.argv
85
- expected_arg_amount = 4
+ expected_arg_amount = 5
86
if len(args) != expected_arg_amount:
87
- raise ValueError(f"4 arguments are expected, {expected_arg_amount - len(args)} from it")
+ raise ValueError(f"5 arguments are expected, {expected_arg_amount - len(args)} from it")
88
branch_name = args[1]
89
target_path = args[2]
90
target_branch = BranchWrite(branch_name, target_path)
0 commit comments