✏ Fix typo in docs/tutorial/code-structure.md (#91)

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
Dhiraj Gupta 2022-08-27 16:32:02 -04:00 committed by GitHub
parent 943892ddb2
commit 5dff4d15e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ The class `Hero` has a reference to the class `Team` internally.
But the class `Team` also has a reference to the class `Hero`.
So, if those two classes where in separate files and you tried to import the classes in each other's file directly, it would result in a **circular import**. 🔄
So, if those two classes were in separate files and you tried to import the classes in each other's file directly, it would result in a **circular import**. 🔄
And Python will not be able to handle it and will throw an error. 🚨