Hey I am getting this error after I upgraded from ...
# ask-community
j
Hey I am getting this error after I upgraded from v1.1.5/0.17.5 to v1.120/0.17.20. _`Could not load location dagster_code_server to check for sensors due to the following error: TypeError: Can't instantiate abstract class LazyLoadingRepositoryData with abstract method get_top_level_resources`_ I am using a class LazyLoadingRepositoryData which inherits from RepositoryData.
d
Hi Jean - if you add this method to LazyLoadingRepositoryData that should get it working again:
Copy code
def get_top_level_resources(self):
        return {}
D 1
j
thanks @daniel!
condagster 1