Skip to content

Commit c5ff3c3

Browse files
committed
Ruff formatting
1 parent ec2d205 commit c5ff3c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pluma/stream/zeromq.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ def load(self):
3838
self.data = self.data.join(zmq_data, on="Counter")
3939
if self.clocksource is not None:
4040
index_name = self.data.index.name
41-
counter_timedelta = pd.to_timedelta(self.data[self.clocksource] - self.data[self.clocksource][0], self.clockunit)
41+
counter_timedelta = pd.to_timedelta(
42+
self.data[self.clocksource] - self.data[self.clocksource][0], self.clockunit
43+
)
4244
self.data.index = self.data.index[0] + counter_timedelta
4345
self.data.index.name = index_name
4446

0 commit comments

Comments
 (0)