Skip to content

Commit b9933ec

Browse files
committed
Added return types to fetch_memory_files
1 parent fb75e19 commit b9933ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

memory_management.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class MemoryManager:
1515

1616
@staticmethod
17-
def fetch_memory_files(memory_folder: str):
17+
def fetch_memory_files(memory_folder: str) -> tuple[list[str], dict[str, str]]:
1818
"""Fetch memory files from memory_folder/conformance_test_memory."""
1919
memory_path = os.path.join(memory_folder, CONFORMANCE_TEST_MEMORY_SUBFOLDER)
2020
if not os.path.exists(memory_path):

0 commit comments

Comments
 (0)