Skip to content

Commit 9c213e9

Browse files
committed
fix bug in fallback mode
1 parent a8b2fa5 commit 9c213e9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fast_flights/core.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ def get_flights_from_filter(
107107
return parse_response(res, data_source)
108108
except RuntimeError as e:
109109
if mode == "fallback":
110-
return get_flights_from_filter(filter, mode="force-fallback")
110+
return get_flights_from_filter(
111+
filter, mode="force-fallback", playwright_config=playwright_config
112+
)
111113
raise e
112114

113115

0 commit comments

Comments
 (0)