Skip to content

Commit

Permalink
fix Ruff errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sinaatalay committed Oct 20, 2023
1 parent 4f5b1ae commit c603078
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion rendercv/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def new(name: Annotated[str, typer.Argument(help="Full name")]):
environment.variable_start_string = "<<"
environment.variable_end_string = ">>"

template = environment.get_template(f"new_input.yaml.j2")
template = environment.get_template("new_input.yaml.j2")
new_input_file = template.render(name=name)

name = name.replace(" ", "_")
Expand Down
2 changes: 0 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import unittest
import os
import json
from datetime import date
import shutil
import subprocess
import sys
Expand Down
2 changes: 0 additions & 2 deletions tests/test_rendering.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import json
from datetime import date
import shutil
import subprocess
import sys

from rendercv import rendering, data_model

Expand Down

0 comments on commit c603078

Please sign in to comment.