1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 09:48:20 +08:00

Opt: Log appearance of perspective detection

This commit is contained in:
LmeSzinc
2020-07-08 16:56:28 +08:00
parent 9c7397ddde
commit 5c4d409b3e
2 changed files with 1 additions and 4 deletions

View File

@@ -188,7 +188,7 @@ def point2str(x, y, length=4):
Returns:
str: String with numbers right aligned, such as '( 100, 80)'.
"""
return '(%s,%s)' % (str(int(x)).rjust(length), str(int(y)).rjust(length))
return '(%s, %s)' % (str(int(x)).rjust(length), str(int(y)).rjust(length))
def node2location(node):