From 28d4692863a9a8c9fa481109ca2e448896454fc2 Mon Sep 17 00:00:00 2001 From: Gerda Shank Date: Mon, 15 Nov 2021 06:46:17 -0800 Subject: [PATCH] [#3689] Fix filesystem searcher and tests that mock it (#4271) automatic commit by git-black, original commits: 2cc0579b6eb0802d82b73c7dc114ae1483f325d5 3d28b6704ce53446293fc0acecb0b57cd0f6f6ba --- core/dbt/parser/read_files.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/dbt/parser/read_files.py b/core/dbt/parser/read_files.py index 98eaa756970..594f6b0a98b 100644 --- a/core/dbt/parser/read_files.py +++ b/core/dbt/parser/read_files.py @@ -109,9 +109,7 @@ def load_seed_source_file(match: FilePath, project_name) -> SourceFile: # them into a bunch of FileSource objects def get_source_files(project, paths, extension, parse_file_type, saved_files): # file path list - fp_list = filesystem_search( - project, paths, extension - ) + fp_list = filesystem_search(project, paths, extension) # file block list fb_list = [] for fp in fp_list: