Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tefra committed Oct 25, 2020
1 parent dd59723 commit ed66ce6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from dataclasses import dataclass, field
from typing import List, Optional
from output.models.ms_data.particles.particles_q030_xsd.particles_q030_imp import E2
from output.models.ms_data.particles.particles_q030_xsd.particles_q030_imp import E2 as ParticlesQ030ImpE2
from output.models.ms_data.particles.particles_q030_xsd.particles_q030_imp2 import E2

__NAMESPACE__ = "http://xsdtesting"

Expand Down Expand Up @@ -53,7 +54,7 @@ class R:
"max_occurs": 4,
}
)
e2: List[E2] = field(
e2: List[ParticlesQ030ImpE2] = field(
default_factory=list,
metadata={
"type": "Element",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from dataclasses import dataclass, field
from typing import List, Optional
from output.models.ms_data.particles.particles_q032_xsd.particles_q032_imp import E2 as ParticlesQ032ImpE2
from output.models.ms_data.particles.particles_q032_xsd.particles_q032_imp2 import E2 as ParticlesQ032Imp2E2

__NAMESPACE__ = "http://xsdtesting"

Expand Down Expand Up @@ -89,7 +90,7 @@ class R:
"namespace": "http://xsdtesting",
}
)
e2_2: Optional[E2] = field(
e2_2: Optional[ParticlesQ032Imp2E2] = field(
default=None,
metadata={
"name": "e2",
Expand Down

0 comments on commit ed66ce6

Please sign in to comment.