Skip to content

Commit

Permalink
Update 0.5.3
Browse files Browse the repository at this point in the history
- removed unnecessary threading timer
  • Loading branch information
InitialPosition committed Mar 19, 2020
1 parent 5e453db commit e20a908
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scrape.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import argparse
import threading
from datetime import datetime
from json import decoder
from os import path, mkdir, remove
from os.path import isfile
from threading import Thread
from time import sleep

try:
Expand Down Expand Up @@ -123,14 +123,14 @@ def main():
bar.finish()

print()
threading.Timer(0, main).start()
Thread(main()).start()


if __name__ == '__main__':

AUTHOR = "SYRAPT0R"
COPYRIGHT = "2019-2020"
VERSION = "0.5.2"
VERSION = "0.5.3"

# parse arguments
keywords = None
Expand Down

0 comments on commit e20a908

Please sign in to comment.