I am seeing an issue where `asgiref/local.py` is throwing a `TypeError 'NoneType' object is not subscriptable` this is being thrown from: ``` def __getattr__(self, key): storage_object = self._data.get({}) try: return storage_object[key] except KeyError: raise AttributeError(f"{self!r} object has no attribute {key!r}") ```