Skip to content

Commit

Permalink
Cleanup after remove Python 2 support (#882)
Browse files Browse the repository at this point in the history
  • Loading branch information
shadchin committed Oct 21, 2023
1 parent fc130b2 commit a80f16a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tests/config/test_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import typing as t
from io import StringIO
from tempfile import TemporaryDirectory
from unittest import TestCase
from unittest import TestCase, mock

import pytest
from pytest import mark
Expand All @@ -25,11 +25,6 @@
from traitlets.config.loader import Config, KVArgParseConfigLoader
from traitlets.tests.utils import check_help_all_output, check_help_output, get_output_error_code

try:
from unittest import mock
except ImportError:
from unittest import mock

pjoin = os.path.join


Expand Down

0 comments on commit a80f16a

Please sign in to comment.