update run_rendercv.py

This commit is contained in:
Sina Atalay 2023-10-23 18:27:29 +02:00
parent 3df105b943
commit 88bd0336a9
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,6 @@
from rendercv.__main__ import render from rendercv.__main__ import render
from rendercv.data_model import generate_json_schema
import os
input_file_path = "John_Doe_CV.yaml" input_file_path = "John_Doe_CV.yaml"
render(input_file_path) # type: ignore render(input_file_path) # type: ignore
@ -9,4 +11,4 @@ render(input_file_path) # type: ignore
# rendercv personal.yaml # rendercv personal.yaml
# Generate schema.json # Generate schema.json
# generate_json_schema(os.path.join(os.path.dirname(__file__))) generate_json_schema(os.path.join(os.path.dirname(__file__)))