benmoran56 / esper

An ECS (Entity Component System) for Python
MIT License
537 stars 67 forks source link

Replace `lru_cache` with a manual cache. #67

Closed HexDecimal closed 2 years ago

HexDecimal commented 2 years ago

This prevents lru_cache from confusing type checking tools. Closes #59

I tested the workaround from #59 but it doesn't work on "Python <= 3.7". In the end I replaced the lru_cache decorator completely with a manual cache.