-
-
Save Diggsey/0a07b11db874d7748511b7bc15d8fdec to your computer and use it in GitHub Desktop.
This file contains 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
# models/a.py | |
from models.b import B | |
class A(B): | |
pass |
This file contains 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
# models/b.py | |
from models import a | |
class B: | |
pass |
This file contains 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
# models/c.py | |
from models.b import B | |
class C(B): | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment