Created
December 9, 2021 15:05
-
-
Save victory-sokolov/9a2673241d94535824e81743f91c75d2 to your computer and use it in GitHub Desktop.
Circular Types import
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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