mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 19:06:55 +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)
|