Skip to content

Commit 9083e31

Browse files
committed
linting again
1 parent 08989dc commit 9083e31

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/flow_preprocessor/preprocessing_logic/preprocess.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def __init__(
7171
self.huggingface_new_repo_name: Optional[
7272
str] = None if huggingface_new_repo_name is None else huggingface_new_repo_name
7373
self.huggingface_token: Optional[str] = None if huggingface_token is None \
74-
else huggingface_token
74+
else huggingface_token
7575
self.huggingface_repo_private: bool = huggingface_new_repo_private
7676
self.dataset: Optional[datasets.Dataset] = None
7777

@@ -86,7 +86,7 @@ def __init__(
8686
else:
8787
self.namespace = {
8888
'pc': 'http://schema.primaresearch.org/PAGE/gts/pagecontent/2013-07-15'
89-
}
89+
}
9090

9191
self.min_width_line: Optional[int] = int(min_width_line) if min_width_line is not None \
9292
else None
@@ -231,7 +231,7 @@ def create_xmlconverter(self) -> XmlConverter:
231231
:return: An instance of XmlConverter configured with LineExporter.
232232
"""
233233
parser = XmlParser(namespace=self.namespace['pc'])
234-
logger.info("Creating XmlConverter for input path: %s", self.input_path)")
234+
logger.info("Creating XmlConverter for input path: %s", self.input_path)
235235
if parser:
236236
logger.info("XmlParser created successfully.")
237237
else:

0 commit comments

Comments
 (0)