Fixed AttributError: module 'os'

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2022-05-08 18:43:44 +03:00
parent de681e547c
commit 2bbdda0ec5

View file

@ -76,7 +76,7 @@ class Initialization(Utils):
def make_dir(self, path: list): def make_dir(self, path: list):
for p in path: for p in path:
if not os.path.exists(p): if not os.path.exists(p):
os.make_dir(p) os.mkdir(p)
def make_dirs(self, path: list): def make_dirs(self, path: list):
for p in path: for p in path: