diff --git a/vcr/matchers.py b/vcr/matchers.py index f2029a8..ad04a45 100644 --- a/vcr/matchers.py +++ b/vcr/matchers.py @@ -98,4 +98,4 @@ def _log_matches(r1, r2, matches): def requests_match(r1, r2, matchers): matches = [(m(r1, r2), m) for m in matchers] _log_matches(r1, r2, matches) - return all([m[0] for m in matches]) + return all(m[0] for m in matches)