From 34ecb9f07caec6b87033fb71fdfbf5ea049e38f7 Mon Sep 17 00:00:00 2001 From: Artur Barseghyan Date: Thu, 3 Oct 2024 01:05:32 +0200 Subject: [PATCH] Fix (#192) --- fake.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fake.py b/fake.py index bdbdf80..8e4b834 100644 --- a/fake.py +++ b/fake.py @@ -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