Skip to content

Bug in __init__.py #22

Description

@hrishereforyou

bug init.py line 201
r_off, c_off = [int(x, 16) for x in root.lstrip('R').split('C')]

Range of hex is 0-F so could contain C.
possible fix
r_off, c_off = [int(x, 16) for x in [root[1:5], root[6:10]]]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions