We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c18712b commit ccc905dCopy full SHA for ccc905d
Leetcode/script.py
@@ -1,5 +1,5 @@
1
import os
2
-difficulty = input("Enter difficulty: ")
+message = input("Enter commit message: ")
3
os.system("git add .")
4
-os.system("git commit -m \"Added " + difficulty + " problem.\"")
+os.system("git commit -m \"" + message + "\"")
5
os.system("git push -u origin master")
0 commit comments