Skip to content

Commit

Permalink
fixed imports and whitespaces
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Utz <[email protected]>
  • Loading branch information
ant-u committed Nov 21, 2024
1 parent 9dc4761 commit abf0c4d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 0 additions & 3 deletions src/ros_license_toolkit/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,3 @@ def check(self, package: Package):
def _check(self, package: Package):
"""Check `package`. To be overwritten by subclasses."""
raise NotImplementedError("Overwrite this")



4 changes: 3 additions & 1 deletion src/ros_license_toolkit/license_checks/schema_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@

"""This Module contains SchemaCheck, which implements Check."""

from lxml import etree
from typing import Tuple

from lxml import etree

from ros_license_toolkit.checks import Check


Expand Down
2 changes: 1 addition & 1 deletion src/ros_license_toolkit/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
from typing import Optional, Sequence

from ros_license_toolkit.checks import Status
from ros_license_toolkit.license_checks.schema_check import SchemaCheck
from ros_license_toolkit.license_checks.license_file_referenced_check import \
LicenseFilesReferencedCheck
from ros_license_toolkit.license_checks.license_in_code_check import \
Expand All @@ -36,6 +35,7 @@
LicenseTagIsInSpdxListCheck
from ros_license_toolkit.license_checks.license_text_exists_check import \
LicenseTextExistsCheck
from ros_license_toolkit.license_checks.schema_check import SchemaCheck
from ros_license_toolkit.package import get_packages_in_path
from ros_license_toolkit.ui_elements import (FAILURE_STR, SUCCESS_STR,
WARNING_STR, Verbosity, major_sep,
Expand Down

0 comments on commit abf0c4d

Please sign in to comment.