Skip to content

Commit

Permalink
STY: Precommit Issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aksharsarvesh committed Aug 13, 2024
1 parent f797464 commit b1ed67b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pydm/widgets/archiver_time_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,14 @@ def __init__(

def to_dict(self) -> OrderedDict:
"""Returns an OrderedDict representation with values for all properties needed to recreate this curve."""
dic_ = OrderedDict([("useArchiveData", self.use_archive_data), ("liveData", self.liveData),
("plot_style", self.plot_style), ("formula", self.formula)])
dic_ = OrderedDict(
[
("useArchiveData", self.use_archive_data),
("liveData", self.liveData),
("plot_style", self.plot_style),
("formula", self.formula),
]
)
curveDict = dict()
for header, curve in self.pvs.items():
if isinstance(curve, ArchivePlotCurveItem):
Expand Down

0 comments on commit b1ed67b

Please sign in to comment.