Skip to content

Commit

Permalink
lint fixes Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
SerodioJ committed Feb 23, 2024
1 parent 373109e commit 5f29951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypapi/structs.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, cdata):
def __repr__(self):
attr = [f"\t{field}={getattr(self, field)}\n" for field in self.fields]
s_attr = [f"\t{field}={getattr(self, field)}\n" for field in self.s_fields]
return f"{self.__class__.__name__}(\n{''.join(attr+s_attr)})"
return f"{self.__class__.__name__}(\n{''.join(attr + s_attr)})"

@staticmethod
def cdata_to_python(cdata, data_type):
Expand Down

0 comments on commit 5f29951

Please sign in to comment.