Coverage for intelligence_toolkit/detect_case_patterns/__init__.py: 40%
5 statements
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-16 13:41 -0300
« 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#
5import os
8def get_readme():
9 file_path = os.path.join(os.path.dirname(__file__), "README.md")
10 with open(file_path) as file:
11 return file.read()