Skip to content

Commit 99e836d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 0f2959e commit 99e836d

17 files changed

+17
-1
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ url = https://github.com/pupil-labs/surface-tracker
88
author = Pupil Labs GmbH
99
author_email = [email protected]
1010
license = LGPL-3.0
11-
license_file = LICENSE
11+
license_files = LICENSE
1212
classifiers =
1313
Development Status :: 5 - Production/Stable
1414
Intended Audience :: Developers

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
See LICENSE for license details.
88
---------------------------------------------------------------------------~(*)
99
"""
10+
1011
from setuptools import setup
1112

1213
setup(

src/surface_tracker/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
See LICENSE for license details.
88
---------------------------------------------------------------------------~(*)
99
"""
10+
1011
from . import utils
1112
from .camera import Camera
1213
from .coordinate_space import CoordinateSpace

src/surface_tracker/coordinate_space.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
See LICENSE for license details.
88
---------------------------------------------------------------------------~(*)
99
"""
10+
1011
import enum
1112

1213

src/surface_tracker/corner.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
See LICENSE for license details.
88
---------------------------------------------------------------------------~(*)
99
"""
10+
1011
import enum
1112
import typing as T
1213

src/surface_tracker/heatmap.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
See LICENSE for license details.
88
---------------------------------------------------------------------------~(*)
99
"""
10+
1011
import enum
1112
import typing as T
1213

src/surface_tracker/image_crop.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
See LICENSE for license details.
88
---------------------------------------------------------------------------~(*)
99
"""
10+
1011
import typing as T
1112

1213
import cv2

src/surface_tracker/location.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
See LICENSE for license details.
88
---------------------------------------------------------------------------~(*)
99
"""
10+
1011
import abc
1112
import logging
1213
import typing as T

src/surface_tracker/marker.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
See LICENSE for license details.
88
---------------------------------------------------------------------------~(*)
99
"""
10+
1011
import abc
1112
import typing as T
1213

src/surface_tracker/orientation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
See LICENSE for license details.
88
---------------------------------------------------------------------------~(*)
99
"""
10+
1011
from .corner import CornerId
1112

1213

0 commit comments

Comments
 (0)