mirror of
https://github.com/hohn/sarif-cli.git
synced 2025-12-16 01:13:03 +01:00
7 lines
109 B
Python
Executable File
7 lines
109 B
Python
Executable File
#!/usr/bin/env python
|
|
import json
|
|
import yaml
|
|
import sys
|
|
|
|
yaml.dump(json.load(sys.stdin), stream=sys.stdout)
|