Skip to content

Commit b861344

Browse files
committed
Linting.
1 parent 5f0ee2f commit b861344

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

repo_helper/cli/commands/show.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def flatten(iterable: Iterable[Union[Requirement, Iterable]]):
257257
if isinstance(item, str):
258258
yield item
259259
else:
260-
yield from flatten(item)
260+
yield from flatten(item) # type: ignore
261261

262262
for requirement in raw_requirements:
263263
concise_requirements.append(requirement)

repo_helper/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171
"pformat_tabs",
7272
"reformat_file",
7373
"today",
74-
"traverse_to_file",
7574
"sort_paths",
7675
"commit_changes",
7776
"stage_changes",

0 commit comments

Comments
 (0)