hugsy / gef-extras

Extra goodies for GEF to (try to) make GDB suck even less
https://hugsy.github.io/gef-extras
MIT License
148 stars 50 forks source link

`gef-extras` can fail on older Python due to typing error #103

Closed CuckooEXE closed 5 months ago

CuckooEXE commented 5 months ago

list[str] isn't valid in older python versions, it should be List[str]

Description/Motivation/Screenshots

This PR just fixes a small issue in generator.py where list[str] was placed instead of List[str]

How Has This Been Tested ?

N/A

Checklist