Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 15, 2024
1 parent aa29850 commit 6f8dbb7
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ url = https://github.com/pupil-labs/surface-tracker
author = Pupil Labs GmbH
author_email = [email protected]
license = LGPL-3.0
license_file = LICENSE
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

from setuptools import setup

setup(
Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

from . import utils
from .camera import Camera
from .coordinate_space import CoordinateSpace
Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/coordinate_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import enum


Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/corner.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import enum
import typing as T

Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/heatmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import enum
import typing as T

Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/image_crop.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import typing as T

import cv2
Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/location.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import abc
import logging
import typing as T
Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/marker.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import abc
import typing as T

Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/orientation.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

from .corner import CornerId


Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/surface.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import abc
import collections
import logging
Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import logging
import typing as T

Expand Down
1 change: 1 addition & 0 deletions src/surface_tracker/visual_anchors.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import typing as T

import numpy as np
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_corner.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import pytest

from surface_tracker.corner import CornerId
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import pytest


Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import pytest

from surface_tracker.utils import left_rotation, right_rotation
Expand Down
1 change: 1 addition & 0 deletions update_license_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
See LICENSE for license details.
---------------------------------------------------------------------------~(*)
"""

import fnmatch
import os
import re
Expand Down

0 comments on commit 6f8dbb7

Please sign in to comment.