Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup after remove Python 2 support #882

Merged
merged 1 commit into from
Oct 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading