-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
0. Generated classes must not contain circular imports. 1. we have to put base classes in one file base/__init__ because it is easier to use import. ``` from base import (Annotation, CodeableConcept, DomainResource, Reference) ``` is better when ``` from ..base.Annotation import Annotation from ..base.CodeableConcept import CodeableConcept ``` etc. 2. Generated classes have to be ordered by inheritance: first are Element and Resource (no inheritance), but import of Meta and Extension. Later resources that inherit Element, Resource or DomainResource.
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.