Skip to content

Commit

Permalink
pyinfra.facts.util: add type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
bauen1 committed Jan 4, 2025
1 parent e0d9b2b commit 3e2440d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyinfra/facts/util/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
def make_cat_files_command(*filenames):
from typing import Iterable


def make_cat_files_command(*filenames: Iterable[str]) -> str:
commands = []

for filename in filenames:
Expand Down

0 comments on commit 3e2440d

Please sign in to comment.