Skip to content

Commit 0a4e7a2

Browse files
committed
Fix pylint encoding
1 parent c478445 commit 0a4e7a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meilisearch/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def small_movies():
3535
"""
3636
Runs once per session. Provides the content of small_movies.json.
3737
"""
38-
with open('./datasets/small_movies.json', 'r') as movie_file:
38+
with open('./datasets/small_movies.json', 'r', encoding=None) as movie_file:
3939
yield json.loads(movie_file.read())
4040

4141
@fixture(scope='function')

0 commit comments

Comments
 (0)