python-minifier
python-minifier copied to clipboard
Make relative imports more compact
Currently, minifying from . import test adds an extra space:
from . import test
from .b import test
This PR removes whitespace around the .:
from.import test
from.b import test