Skip to content

Commit

Permalink
mypy error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Aviksaikat committed Oct 11, 2023
1 parent 9a1aa58 commit 9fbe149
Show file tree
Hide file tree
Showing 3 changed files with 279 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
try: # for Sphinx >= 1.7
from sphinx.ext import apidoc
except ImportError:
from sphinx import apidoc
from sphinx import apidoc # type: ignore

output_dir = os.path.join(__location__, "api")
module_dir = os.path.join(__location__, "../src/fds_py")
Expand Down Expand Up @@ -87,7 +87,7 @@
master_doc = "index"

# General information about the project.
project = "fds_py"
project = "fds"
copyright = "2023, SAIKAT KARMAKAR"

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -99,7 +99,7 @@
# If you don’t need the separation provided between version and release,
# just set them both to the same value.
try:
from fds_py import __version__ as version
from fds import __version__ as version # type: ignore
except ImportError:
version = ""

Expand Down Expand Up @@ -231,7 +231,7 @@

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

latex_elements = {
latex_elements = { # type: ignore
# The paper size ("letterpaper" or "a4paper").
# "papersize": "letterpaper",
# The font size ("10pt", "11pt" or "12pt").
Expand Down
275 changes: 274 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ mdformat-frontmatter = ">=0.4.1"
mdformat-pyproject = ">=0.0.1"
pyproject-flake8 = "^6.1.0"
flake8-pyproject = "^1.2.3"
sphinx = "^7.2.6"


[build-system]
Expand Down

0 comments on commit 9fbe149

Please sign in to comment.