Skip to content

Commit

Permalink
include flake8 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hegner committed Jun 11, 2024
1 parent 763f5c9 commit fcb1a13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/podio_schema_evolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ def __init__(self, name, member_name, old_member, new_member):
self.new_member = new_member
self.klassname = name
super().__init__(
f"'{self.name}.{self.member_name}' changed type from "+\
f"{self.old_member.full_type} to {self.new_member.full_type}"
f"'{self.name}.{self.member_name}' changed type from "
+ f"{self.old_member.full_type} to {self.new_member.full_type}"
)


Expand Down Expand Up @@ -475,4 +475,4 @@ def read_evolution_file(self) -> None:
comparator.read()
comparator.compare()
comparator.print_comparison()
#print(comparator.get_changed_schemata(schema_filter=root_filter))
# print(comparator.get_changed_schemata(schema_filter=root_filter))

0 comments on commit fcb1a13

Please sign in to comment.