mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
11 lines
244 B
Python
11 lines
244 B
Python
|
|
"""File I/O — unsupported fixture (low confidence).
|
||
|
|
|
||
|
|
Expected verdict: Unsupported(ConfidenceTooLow)
|
||
|
|
"""
|
||
|
|
|
||
|
|
|
||
|
|
def read_config(path):
|
||
|
|
"""Vulnerable function in unsupported-confidence test."""
|
||
|
|
with open(path) as f:
|
||
|
|
return f.read()
|