Skip to content

Commit

Permalink
[#3689] Fix filesystem searcher and tests that mock it (#4271)
Browse files Browse the repository at this point in the history
automatic commit by git-black, original commits:
  2cc0579
  3d28b67
  • Loading branch information
gshank authored and iknox-fa committed Feb 8, 2022
1 parent efc2e7f commit 28d4692
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions core/dbt/parser/read_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 28d4692

Please sign in to comment.