Skip to content

Commit

Permalink
Update bigfunctions.py (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
VbessV authored Nov 8, 2024
1 parent 1c84ecf commit af23ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigfun/bigfunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


def list_bigfunctions():
filenames = sorted([f for f in glob.glob(f'{BIGFUNCTIONS_FOLDER}/**/*.yaml', recursive=True)])
filenames = sorted([f.replace("\\", "/") for f in glob.glob(f'{BIGFUNCTIONS_FOLDER}/**/*.yaml', recursive=True)])
return {
f.split('/')[-1].replace('.yaml', ''): f
for f in filenames
Expand Down

0 comments on commit af23ccb

Please sign in to comment.