Skip to content

Commit 13a8baa

Browse files
committed
Fix pylint
1 parent 185c74e commit 13a8baa

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', encoding=None) as movie_file:
38+
with open('./datasets/small_movies.json', 'r', encoding="utf8") as movie_file:
3939
yield json.loads(movie_file.read())
4040

4141
@fixture(scope='function')

0 commit comments

Comments
 (0)