Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
Draft
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
12 changes: 10 additions & 2 deletions tests/test_stdin.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
"""Tests for polyfill's stdin monkey patching."""
import flake8
import pep8
import pycodestyle
import pytest

try:
import pep8
except ImportError:
pep8 = None

try:
import pycodestyle
except ImportError:
pycodestyle = None

from flake8_polyfill import stdin
from flake8_polyfill import version

Expand Down