Fixed C413 Unnecessary list call around sorted().

This commit is contained in:
Salvador E. Tropea 2022-02-17 16:04:13 -03:00
parent 128a10f383
commit 9082a7ec69
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ class ReportOptions(BaseOptions):
oar_t = min(oar_x, oar_y)
if oar_t:
self.oar_pads = min(self.oar_pads, oar_t)
self._vias_m = list(sorted(self._vias.keys()))
self._vias_m = sorted(self._vias.keys())
# Via Pad size
self.via_pad_d = ds.m_ViasMinSize
self.via_pad = self._vias_m[0][1]