Coverage for intelligence_toolkit/generate_mock_data/__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 

4import os 

5 

6 

7def get_readme(): 

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

9 with open(file_path) as file: 

10 return file.read()