1
0
Fork 0

fix(api): print border size in expected order

This commit is contained in:
Sean Sube 2023-04-15 12:36:41 -05:00
parent 16c6bdf85a
commit 7b4ce44f51
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class Border:
self.bottom = bottom
def __str__(self) -> str:
return "(%s, %s, %s, %s)" % (self.left, self.top, self.right, self.bottom)
return "(%s, %s, %s, %s)" % (self.left, self.right, self.top, self.bottom)
def tojson(self):
return {