Skip to content

Commit

Permalink
Fix MRO issue in cpfs_schemes
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanNoky committed Oct 30, 2024
1 parent 3d2a2b4 commit ca9bb87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpfs_synthesis/cpfs_schemes.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def normalize(self, archive, logger: BoundLogger) -> None:
break


class CPFSCrystalGrowthTube(ArchiveSection, EntryData):
class CPFSCrystalGrowthTube(EntryData, ArchiveSection):
m_def = Section(
a_eln=ELNAnnotation(
properties=SectionProperties(
Expand Down Expand Up @@ -221,7 +221,7 @@ def normalize(self, archive, logger: BoundLogger) -> None:
break


class CPFSCrucible(ArchiveSection, EntryData):
class CPFSCrucible(EntryData, ArchiveSection):
m_def = Section(
a_eln=ELNAnnotation(
properties=SectionProperties(
Expand Down

0 comments on commit ca9bb87

Please sign in to comment.