We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c7fa7e commit 35608c6Copy full SHA for 35608c6
codebasin/report.py
@@ -5,7 +5,6 @@
5
"""
6
7
import itertools as it
8
-import json
9
import logging
10
import warnings
11
@@ -14,17 +13,6 @@
14
13
log = logging.getLogger("codebasin")
15
16
17
-def annotated_dump(output_file, state):
18
- outlist = []
19
- for fname in state.get_filenames():
20
- source_tree = state.get_tree(fname)
21
- node_associations = state.get_map(fname)
22
- outlist.append(source_tree.root.to_json(node_associations))
23
-
24
- with open(output_file, "w") as fp:
25
- fp.write(json.dumps(outlist, indent=2))
26
27
28
def extract_platforms(setmap):
29
30
Extract a list of unique platforms from a set map
0 commit comments