mirror of
https://github.com/clearml/clearml-server
synced 2025-02-01 03:16:44 +00:00
5 lines
180 B
Python
5 lines
180 B
Python
|
def generate(path, error_codes):
|
||
|
from .generator import Generator
|
||
|
from pathlib import Path
|
||
|
Generator(Path(path) / 'errors', format_pep8=False).make_errors(error_codes)
|