Skip to content

Commit

Permalink
fix CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
sinaatalay committed Oct 21, 2023
1 parent 1ee3948 commit 307f865
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rendercv/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import logging
import re
from typing import Annotated
from functools import wraps

from .rendering import read_input_file, render_template, run_latex

Expand All @@ -27,7 +28,7 @@ def user_friendly_errors(func):
Returns:
function: Decorated function
"""

@wraps(func)
def wrapper(*args, **kwargs):
try:
func(*args, **kwargs)
Expand Down

0 comments on commit 307f865

Please sign in to comment.