xlwings 0.15.8, python 3.7.3, Win10 64-bit
xlwings.constants.py
Lines 1226 to 1238:
class Direction:
xlDown = -4121 # from enum XlDirection
xlToLeft = -4159 # from enum XlDirection
xlToRight = -4161 # from enum XlDirection
xlUp = -4162 # from enum XlDirection
directions = (
'down',
'left',
'right' <---Comma missing at end of this line
'up'
)
xlwings 0.15.8, python 3.7.3, Win10 64-bit