Skip to content

Commit

Permalink
🦄 refactor: functions 使用':'进行分割(以前使用'-')
Browse files Browse the repository at this point in the history
Signed-off-by: xqyjlj <xqyjlj@126.com>
  • Loading branch information
xqyjlj committed Nov 10, 2024
1 parent 788ef82 commit 6d318d5
Show file tree
Hide file tree
Showing 16 changed files with 10,545 additions and 10,545 deletions.
2 changes: 1 addition & 1 deletion common/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def pinIp(self) -> str:
if self.__pinIp is None:
for _, pin in self.pins.items():
if len(pin.modes) > 0:
self.__pinIp = pin.modes[0].split('-')[0]
self.__pinIp = pin.modes[0].split(':')[0]
break
return self.__pinIp

Expand Down
Loading

0 comments on commit 6d318d5

Please sign in to comment.