Skip to content

Commit eac841c

Browse files
committed
fixes #174
1 parent 7f38c28 commit eac841c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apstools/synApps_ophyd/sscan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ class sscanRecord(Device):
234234
)
235235
detectors = DDC(
236236
_sscan_detectors(
237-
["%02d" % k for k in range(1,71)]
237+
[f"{k:%02d}" for k in list(range(1,71))]
238238
)
239239
)
240240
triggers = DDC(

0 commit comments

Comments
 (0)