mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
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.
10 lines
183 B
Python
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) |