Skip to content

Commit

Permalink
Try to bypass linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Nov 27, 2024
1 parent ed4747a commit f586186
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/dummy_game_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import unittest.util
from unittest import TestCase
from unittest.mock import Mock, patch, call
from tempfile import TemporaryDirectory, TemporaryFile

from ckan_meta_tester.game import Game
from ckan_meta_tester.game_version import GameVersion
Expand All @@ -26,7 +25,7 @@ def test_dummy_game_instance_calls(self,
mocked_run: Mock) -> None:

# Arrange
unittest.util._MAX_LENGTH=999999999 # :snake:
unittest.util._MAX_LENGTH=999999999 # type: ignore # pylint: disable=protected-access

# Act
with DummyGameInstance(
Expand Down

0 comments on commit f586186

Please sign in to comment.