PyUserInput icon indicating copy to clipboard operation
PyUserInput copied to clipboard

Line 80 appears to have a misalignment

Open NSC9 opened this issue 3 years ago • 0 comments

https://github.com/SavinaRoja/PyUserInput/blob/master/pymouse/x11.py

def button_code_to_scroll_direction(button):
    # scrollup=4, scrolldown=5, scrollleft=6, scrollright=7
    return {
        4: (1, 0),
        5: (-1, 0),
        6: (0, 1),
        7: (0, -1),
    }[button]

is this better? only asking cause the highlighting was off when i was looking at this code

def button_code_to_scroll_direction(button):
    # scrollup=4, scrolldown=5, scrollleft=6, scrollright=7
    return {
        4: (1, 0),
        5: (-1, 0),
        6: (0, 1),
        7: (0, -1),
        }[button]

NSC9 avatar Feb 26 '22 12:02 NSC9