Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack-Burnett committed Aug 24, 2022
1 parent 85eed70 commit 6689f4e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions singer_sdk/helpers/_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,7 @@ def to_dict(self):
result = {}

if self.properties is not None:
result["properties"] = {
k: v.to_dict()
for k, v in self.properties.items()
}
result["properties"] = {k: v.to_dict() for k, v in self.properties.items()}

if self.items is not None:
result["items"] = self.items.to_dict()
Expand Down

0 comments on commit 6689f4e

Please sign in to comment.