Skip to content

Instantly share code, notes, and snippets.

@brccabral
Last active September 11, 2022 19:06
Show Gist options
  • Save brccabral/168ea4026d01500905c9baf507aab2f7 to your computer and use it in GitHub Desktop.
Save brccabral/168ea4026d01500905c9baf507aab2f7 to your computer and use it in GitHub Desktop.
Python circular import

Python circular import

from __future__ import annotations
# other imports
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from main import MyClass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment