Skip to content

Commit 3e523f5

Browse files
MyPyDavidjochenklar
authored andcommitted
style(core): remove type hints
Signed-off-by: David Wallace <david.wallace@tu-darmstadt.de>
1 parent b0808d3 commit 3e523f5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rdmo/core/pandoc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import re
55
from pathlib import Path
66
from tempfile import NamedTemporaryFile
7-
from typing import Optional
87

98
from django.apps import apps
109
from django.conf import settings
@@ -103,7 +102,7 @@ def get_pandoc_args(export_format, context):
103102
return pandoc_args
104103

105104

106-
def get_pandoc_reference_document(export_format, context) -> Optional[Path]:
105+
def get_pandoc_reference_document(export_format, context):
107106
# collect all configured reference documents
108107
reference_documents = get_pandoc_reference_documents(export_format, context)
109108

0 commit comments

Comments
 (0)