Skip to content

Instantly share code, notes, and snippets.

@victory-sokolov
Created December 9, 2021 15:05
Show Gist options
  • Save victory-sokolov/9a2673241d94535824e81743f91c75d2 to your computer and use it in GitHub Desktop.
Save victory-sokolov/9a2673241d94535824e81743f91c75d2 to your computer and use it in GitHub Desktop.
Circular Types import
# Reference: https://adamj.eu/tech/2021/05/13/python-type-hints-how-to-fix-circular-imports/
from __future__ import annotations
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from models import Book
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment