mirror of https://github.com/eyhc1/rendercv.git
format using black
This commit is contained in:
parent
76536cd79e
commit
dafcdc8e9e
|
@ -189,7 +189,7 @@ class EntryWithDate(RenderCVBaseModel):
|
|||
title="Date",
|
||||
description=(
|
||||
"The date field can be filled in YYYY-MM-DD, YYYY-MM, or YYYY formats or as"
|
||||
" an arbitrary string like \"Fall 2023\"."
|
||||
' an arbitrary string like "Fall 2023".'
|
||||
),
|
||||
examples=["2020-09-24", "Fall 2023"],
|
||||
)
|
||||
|
@ -322,7 +322,7 @@ class EntryBase(EntryWithDate):
|
|||
title="End Date",
|
||||
description=(
|
||||
"The end date of the event in YYYY-MM-DD, YYYY-MM, or YYYY format. If the"
|
||||
" event is still ongoing, then type \"present\" or provide only the"
|
||||
' event is still ongoing, then type "present" or provide only the'
|
||||
" start_date."
|
||||
),
|
||||
examples=["2020-09-24", "present"],
|
||||
|
@ -786,8 +786,8 @@ def validate_section_input(
|
|||
|
||||
if entry_type is None or section_type is None:
|
||||
raise ValueError(
|
||||
"RenderCV couldn't match this section with any entry types! Please check"
|
||||
" the entries and make sure they are provided correctly.",
|
||||
"RenderCV couldn't match this section with any entry types! Please"
|
||||
" check the entries and make sure they are provided correctly.",
|
||||
"", # This is the location of the error
|
||||
"", # This is value of the error
|
||||
)
|
||||
|
@ -1432,9 +1432,9 @@ def get_a_sample_data_model(
|
|||
"welcome_to_rendercv!": [
|
||||
(
|
||||
"[RenderCV](https://github.com/sinaatalay/rendercv) is a LaTeX-based"
|
||||
" CV/resume framework. It allows you to create a high-quality CV or resume"
|
||||
" as a PDF file from a YAML file, with **full Markdown syntax support** and"
|
||||
" **complete control over the LaTeX code**."
|
||||
" CV/resume framework. It allows you to create a high-quality CV or"
|
||||
" resume as a PDF file from a YAML file, with **full Markdown syntax"
|
||||
" support** and **complete control over the LaTeX code**."
|
||||
),
|
||||
(
|
||||
"The boilerplate content is taken from"
|
||||
|
@ -1545,8 +1545,8 @@ def get_a_sample_data_model(
|
|||
),
|
||||
"Programmer Productivity Research Center (Summers 2001, 2002)",
|
||||
(
|
||||
"Built an app to compute the similarity of all methods in a code"
|
||||
" base, reducing the time from $\\mathcal{O}(n^2)$ to"
|
||||
"Built an app to compute the similarity of all methods in a"
|
||||
" code base, reducing the time from $\\mathcal{O}(n^2)$ to"
|
||||
" $\\mathcal{O}(n \\log n)$"
|
||||
),
|
||||
(
|
||||
|
@ -1588,7 +1588,7 @@ def get_a_sample_data_model(
|
|||
highlights=[
|
||||
(
|
||||
"Developed an electronic classroom where multiple users can"
|
||||
" view and simultaneously draw on a \"chalkboard\" with each"
|
||||
' view and simultaneously draw on a "chalkboard" with each'
|
||||
" person's edits synchronized"
|
||||
),
|
||||
"Tools Used: C++, MFC",
|
||||
|
|
Loading…
Reference in New Issue