Source code for power_cogs.utils.utils

import os


[docs]def makedirs(path): if not os.path.exists(path): os.makedirs(path) return path