Removed trailing spaces (flake8)

This commit is contained in:
Salvador E. Tropea 2021-01-28 15:37:44 -03:00
parent c6ad93dc78
commit c31c2c17c2
1 changed files with 4 additions and 4 deletions

View File

@ -42,16 +42,16 @@ class AnsiCodes(object):
# class AnsiCursor(object):
# def UP(self, n=1):
# return CSI + str(n) + 'A'
#
#
# def DOWN(self, n=1):
# return CSI + str(n) + 'B'
#
#
# def FORWARD(self, n=1):
# return CSI + str(n) + 'C'
#
#
# def BACK(self, n=1):
# return CSI + str(n) + 'D'
#
#
# def POS(self, x=1, y=1):
# return CSI + str(y) + ';' + str(x) + 'H'