Skip to content

Commit

Permalink
[FIX] Fix type hints in conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
PauAndrio committed May 30, 2024
1 parent fbaba44 commit b68818d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions biobb_pmx/docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import sys
from pathlib import Path
from typing import List, Dict

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down Expand Up @@ -93,7 +94,7 @@

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = []
exclude_patterns: List[str] = []

# The reST default role (used for this markup: `text`) to use for all
# documents.
Expand Down Expand Up @@ -227,7 +228,7 @@ def setup(app):

# -- Options for LaTeX output ---------------------------------------------

latex_elements = {
latex_elements: Dict[str, str] = {
# The paper size ('letterpaper' or 'a4paper').
# 'papersize': 'letterpaper',

Expand Down

0 comments on commit b68818d

Please sign in to comment.