mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
parent
4c3f734a5f
commit
fcdea6ede3
1 changed files with 7 additions and 3 deletions
|
@ -1,8 +1,12 @@
|
|||
import argparse, logging, os, re, sys, time
|
||||
from datetime import datetime
|
||||
import schedule
|
||||
from modules import tests, util
|
||||
from modules.config import Config
|
||||
try:
|
||||
import schedule
|
||||
from modules import tests, util
|
||||
from modules.config import Config
|
||||
except ModuleNotFoundError:
|
||||
print("Error: Requirements are not installed")
|
||||
sys.exit(0)
|
||||
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("--my-tests", dest="tests", help=argparse.SUPPRESS, action="store_true", default=False)
|
||||
|
|
Loading…
Reference in a new issue