Fix unresolved merge conflict
This commit is contained in:
parent
0af72376a1
commit
f394fb7911
1 changed files with 1 additions and 6 deletions
|
@ -166,14 +166,9 @@ def add_template_filters(app: Flask) -> None:
|
||||||
return str(datetime.now().year)
|
return str(datetime.now().year)
|
||||||
|
|
||||||
@app.template_filter("euro")
|
@app.template_filter("euro")
|
||||||
<<<<<<< HEAD
|
|
||||||
def euro(value: int) -> str:
|
def euro(value: int) -> str:
|
||||||
return euro_string(value)
|
|
||||||
=======
|
|
||||||
def euro(value: int) -> None:
|
|
||||||
"A function which converts a value to its euro_string"
|
"A function which converts a value to its euro_string"
|
||||||
euro_string(value)
|
return euro_string(value)
|
||||||
>>>>>>> Fix pylint for Haldis
|
|
||||||
|
|
||||||
|
|
||||||
# For usage when you directly call the script with python
|
# For usage when you directly call the script with python
|
||||||
|
|
Loading…
Reference in a new issue