This repository has been archived on 2022-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
gmclcore/GMCLCore/libs/ariaAdapter.py
2022-02-07 02:23:53 +08:00

14 lines
318 B
Python
Executable File

from asyncio import subprocess
from matplotlib.pyplot import subplot
import os, subprocess
class adapter(object):
def __init__(self, path : str):
if not os.path.exists(path):
raise FileNotFoundError
if not os.path.isfile(path):
raise TypeError
self.__path = path