Skip to content

Commit

Permalink
Merge pull request #193 from barseghyanartur/dev
Browse files Browse the repository at this point in the history
Fix (#192)
  • Loading branch information
barseghyanartur authored Oct 2, 2024
2 parents ad8d914 + 34ecb9f commit f1d833f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fake.py
Original file line number Diff line number Diff line change
Expand Up @@ -3932,8 +3932,8 @@ def list_create_inner_file(
the `func_list` list of tuples.
"""
created_files = []
for func, kwargs in func_list:
file = func(**kwargs)
for func, func_kwargs in func_list:
file = func(**func_kwargs)
created_files.append(file)
return created_files

Expand Down

0 comments on commit f1d833f

Please sign in to comment.