diff options
Diffstat (limited to 'tool')
| -rwxr-xr-x | tool/aio.py | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/tool/aio.py b/tool/aio.py index 0abf581..86141c4 100755 --- a/tool/aio.py +++ b/tool/aio.py @@ -1,5 +1,12 @@  #!/usr/bin/env python3 +try: +    import rich +    import jsonschema +except ImportError: +    print("Some necessary modules can't be imported. Please run `pip install -r requirements.txt` to install them.") +    exit(1) +  import datetime  import os  import os.path  | 
