Skip to content

Commit

Permalink
mock for py2
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Jun 14, 2024
1 parent aaac51f commit e0b248f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ckanext/scheming/tests/test_subfields.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from unittest import mock
try:
from unittest import mock
except ImportError:
import mock

import pytest
import ckantoolkit
Expand Down

0 comments on commit e0b248f

Please sign in to comment.