Coverage for intelligence_toolkit/match_entity_records/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.10.7, created at 2025-10-16 13:41 -0300

1# Copyright (c) 2024 Microsoft Corporation. All rights reserved. 

2# Licensed under the MIT license. See LICENSE file in the project. 

3# 

4 

5import os 

6 

7 

8def get_readme() -> str: 

9 file_path = os.path.join(os.path.dirname(__file__), "README.md") 

10 with open(file_path) as file: 

11 return file.read()