Files
openide/python/testData/optimizeImports/blankLineBetweenDocstringAndFirstImportPreserved.py
Mikhail Golubev 041fe2b1be PY-23578 Optimize Imports preserves a blank line before the first import import
It happened due to the bug in the platform and only when the number of
blank lines after the import statement is greater than that before it.

As a temporary workaround before the relevant fix in the platform is
accepted I delete old imports as text through the underlying document.
2017-04-10 14:45:09 +03:00

10 lines
183 B
Python

# pylint: disable=missing-docstring, invalid-name
"""2016 - Day 1 Puzzle Part 2 tests."""
import sys
from mod import solve, in_between, Point
print(solve, in_between, Point, sys)