MarcoGorelli / cython-lint

Lint Cython files
MIT License
69 stars 11 forks source link

don't report variable as unused if it's global #44

Closed MarcoGorelli closed 1 year ago

MarcoGorelli commented 1 year ago

e.g.

cdef int current_notification = FALLBACK_QUIETLY

def set_fallback_notification(level):
    global current_notification
    current_notification = level
MarcoGorelli commented 1 year ago

fixed now