Skip to content

Commit

Permalink
Fix python formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Dec 5, 2022
1 parent 8710fb1 commit b14808a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/podio_class_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,8 @@ def _instantiate_associations(self):

if self.upstream_edm:
ext_datatypes = [DataType(d) for d in self.upstream_edm.datatypes]
includes.extend([self._build_include_for_class(f'{d.bare_type}Collection', IncludeFrom.EXTERNAL) for d in ext_datatypes])
includes.extend([self._build_include_for_class(f'{d.bare_type}Collection',
IncludeFrom.EXTERNAL) for d in ext_datatypes])

combinations += tuple(product(ext_datatypes, datatypes))

Expand Down

0 comments on commit b14808a

Please sign in to comment.