Skip to content

Commit 76964bc

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6903e22 commit 76964bc

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

tests/test_i18n.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,19 +325,20 @@ def test_none_locale(self) -> None:
325325

326326
assert test_str == humanize.naturaltime(three_seconds)
327327

328-
from humanize.i18n import _gettext_noop, activate
328+
329+
from humanize.i18n import _gettext_noop
329330

330331

331332
def test_gettext_noop():
332333
assert _gettext_noop("hello") == "hello"
333334

334335

335-
from humanize.i18n import _gettext_noop, _ngettext_noop
336+
from humanize.i18n import _ngettext_noop
336337

337338

338339
def test_gettext_noop():
339340
assert _gettext_noop("hello") == "hello"
340341

341342

342343
def test_ngettext_noop():
343-
assert _ngettext_noop("item", "items") == ("item", "items")
344+
assert _ngettext_noop("item", "items") == ("item", "items")

0 commit comments

Comments
 (0)