Skip to content

Commit

Permalink
fix tests for py3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
vladNed committed Aug 28, 2024
1 parent 23d28aa commit 8954f15
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/fastapi_endpoints/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@

import importlib
import pkgutil

from typing import Set
from types import ModuleType

import fastapi

from . import exceptions, utils


Excluded = set[ModuleType]
Excluded = Set[ModuleType]


def _handle_package_module(module: ModuleType, excluded_routers: Excluded) -> None:
Expand Down

0 comments on commit 8954f15

Please sign in to comment.