Просмотр исходного кода

Added message to last commit: Added sort and check if sorted functions to licenseplate.

Jayke Meijer 14 лет назад
Родитель
Сommit
974d992456
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/LicensePlate.py

+ 1 - 1
src/LicensePlate.py

@@ -30,7 +30,7 @@ class LicensePlate:
         return x0 < x1 and y1 < y2 and x2 > x3 and y3 > y0
         
     def sort_corners(corners):
-        '''Sort the corners clockwise, starting in the left-top corner.'''
+        '''Sort the corners clockwise, starting in the left-top corner. '''
         tuples = []
         output = []