Skip to content

Commit

Permalink
CI testinfg
Browse files Browse the repository at this point in the history
  • Loading branch information
dtiesling committed Nov 18, 2023
1 parent df6e502 commit efd1072
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
python-version: 3.8
- run: pip install poetry
- run: poetry install
- run: poetry install -with dev
- run: mypy flask_muck/


2 changes: 1 addition & 1 deletion flask_muck/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from flask_muck.views import MuckApiView


def get_url_rule(muck_view: type[MuckApiView], append_rule: Optional[str]):
def get_url_rule(muck_view: type[MuckApiView], append_rule: Optional[str]) -> str:
"""Recursively build the url rule for a MuckApiView by looking at its parent if it exists."""
rule = muck_view.api_name
if append_rule:
Expand Down

0 comments on commit efd1072

Please sign in to comment.