Skip to content

Commit 182ec78

Browse files
committed
Minor changes
1 parent 8b18222 commit 182ec78

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

batch_file_rename.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def batch_rename(work_dir, old_ext, new_ext):
3535

3636
def main():
3737
'''
38-
This will be called if the script is directly envoked.
38+
This will be called if the script is directly invoked.
3939
'''
4040
# Set the variable work_dir with the first argument passed
4141
work_dir = sys.argv[1]

get_youtube_view.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33

44
#how much views you want
55

6-
totalBreaks = 30
7-
countBreaks = 0
8-
96
print("Enjoy your Time\n" +time.ctime())
10-
while(countBreaks < totalBreaks):
7+
for count in range(2):
118
time.sleep(5)
129
webbrowser.open("https://www.youtube.com/watch?v=o6A7nf3IeeA")
13-
countBreaks += 1

0 commit comments

Comments
 (0)