Skip to content

Commit

Permalink
(python): fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriiAndreiev committed Sep 2, 2024
1 parent 2557f74 commit dc6c660
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/python/readme_metrics/tests/django_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ def test_options_request(self):
middleware.metrics_core = Mock()
request = Mock()
request.method = "OPTIONS"
result = middleware(request)
assert not middleware.metrics_core.process.called
middleware(request)
assert not middleware.metrics_core.process.called

0 comments on commit dc6c660

Please sign in to comment.