Skip to content

Commit ad3795a

Browse files
committed
Lint
1 parent d0c50c6 commit ad3795a

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Diff for: consolekit/options.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ def process_value(self, ctx: click.Context, value: Any) -> Optional[Tuple]:
446446

447447
if int(click.__version__.split('.')[0]) == 7: # pragma: nocover
448448

449-
def get_default(self, ctx):
449+
def get_default(self, ctx): # noqa: MAN001,MAN002,D102
450450
if callable(self.default):
451451
rv = self.default()
452452
else:

Diff for: tests/test_testing.py

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# stdlib
2-
import sys
3-
from typing import Iterable
4-
51
# 3rd party
62
import click
73

0 commit comments

Comments
 (0)