Skip to content

Commit

Permalink
docs: correct reference format
Browse files Browse the repository at this point in the history
  • Loading branch information
MHajoha committed Jul 9, 2024
1 parent 990b07d commit 767dc3b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ python = "^3.11"
aiohttp = "^3.9.3"
pydantic = "^2.6.4"
PyYAML = "^6.0.1"
questionpy-server = { git = "https://github.com/questionpy-org/questionpy-server.git", rev = "b2577fd99e09a37ff3b05dd2a89b60a24963e875" }
questionpy-server = { git = "https://github.com/questionpy-org/questionpy-server.git", rev = "cd4e326fca0e6e2511396c43d98538e706defa5d" }
jinja2 = "^3.1.3"
aiohttp-jinja2 = "^1.6"
lxml = "~5.1.0"
Expand Down
6 changes: 3 additions & 3 deletions questionpy/_wrappers/_qtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ def __init__(
*,
wrap_question: Callable[[Question], QuestionInterface] = QuestionWrapper,
) -> None:
"""Uses the given question class to provide the [QuestionTypeInterface].
"""Uses the given question class to provide the [QuestionTypeInterface][questionpy.QuestionTypeInterface].
Args:
question_class: Your question subclass.
package: Package to retrieve metadata from, usually the one owning the question, which is passed to your
`init` function.
wrap_question: Supplying a different question wrapper allows you to customize the question and attempt
functionality.
This will probably, but not necessarily, be a subclass of the default [QuestionWrapper].
functionality. This will probably, but not necessarily, be a subclass of the default
[QuestionWrapper][questionpy.QuestionWrapper].
"""
self._question_class = question_class
self._package = package
Expand Down

0 comments on commit 767dc3b

Please sign in to comment.