appropriate symbols type hinting

This commit is contained in:
Abyss Watcher
2025-01-18 14:48:37 +01:00
parent f478044e49
commit 0849c163a1
+1 -1
View File
@@ -337,7 +337,7 @@ class Module(interfaces.context.ModuleInterface):
)
@property
def symbols(self):
def symbols(self) -> Iterable[str]:
return self.context.symbol_space[self.symbol_table_name].symbols
get_symbol = get_module_wrapper("get_symbol")