Skip to content

Commit d14e4f1

Browse files
committed
Linting.
1 parent 83cb0f5 commit d14e4f1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

repo_helper/cli/commands/suggest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# 3rd party
3232
import click
3333
from consolekit import CONTEXT_SETTINGS
34-
from natsort import natsorted
34+
from natsort import natsorted # type: ignore
3535

3636
# this package
3737
from repo_helper.cli import cli_group

repo_helper/configuration/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# 3rd party
3131
from configconfig.configvar import ConfigVar
3232
from configconfig.utils import optional_getter
33-
from natsort import natsorted
33+
from natsort import natsorted # type: ignore
3434
from packaging.version import Version
3535
from shippinglabel.classifiers import validate_classifiers
3636

repo_helper/configuration/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from typing import Any, Dict, Iterable, List, Mapping, Tuple
2929

3030
# 3rd party
31-
from natsort import natsorted
31+
from natsort import natsorted # type: ignore
3232

3333
__all__ = [
3434
"get_tox_python_versions",

repo_helper/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ def stage_changes(
452452

453453
def commit_changes(
454454
repo: Union[PathLike, dulwich.repo.Repo],
455-
message: Optional[str] = "Updated files with 'repo_helper'.",
455+
message: str = "Updated files with 'repo_helper'.",
456456
) -> str:
457457
"""
458458
Commit staged changes.

0 commit comments

Comments
 (0)