python-minifier icon indicating copy to clipboard operation
python-minifier copied to clipboard

Make relative imports more compact

Open luk3yx opened this issue 5 years ago • 0 comments

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

luk3yx avatar Oct 24 '20 05:10 luk3yx