fix line length

This commit is contained in:
Avery Bloom 2019-04-07 13:45:41 +09:00
parent 7111267cf8
commit 8b59d00266

View File

@ -454,7 +454,8 @@ class Beautifier:
self.print_string('=')
if bool(whitespaceChar.search(self._ch)):
self._ch = ''
elif self._ch == '!' and not (self._input.lookBack('\\')): # !important
elif self._ch == '!' and not (self._input.lookBack('\\')):
# !important
self.print_string(' ')
self.print_string(self._ch)
else: