Mercurial > code > home > repos > streamed-graph
changeset 76:58676ebdce0f
sort and dedup imports
author | drewp@bigasterisk.com |
---|---|
date | Tue, 11 Feb 2020 21:55:35 -0800 |
parents | 0ba4bd0ba245 |
children | 0ffe5591b048 |
files | src/graph_view.ts |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/graph_view.ts Tue Feb 11 21:54:23 2020 -0800 +++ b/src/graph_view.ts Tue Feb 11 21:55:35 2020 -0800 @@ -1,10 +1,10 @@ -import { html, TemplateResult } from "lit-html"; -import { Quad, Term, N3Store, Literal, Quad_Object, NamedNode } from "n3"; -import { DataFactory, Util } from "n3"; +import { html, TemplateResult } from 'lit-html'; +import { DataFactory, Literal, N3Store, NamedNode, Quad, Quad_Object, Term, Util } from 'n3'; + +import { SuffixLabels } from './suffixLabels'; + const { namedNode } = DataFactory; -import { SuffixLabels } from "./suffixLabels"; -import { Quad_Object } from "n3"; // import ns from 'n3/src/IRIs'; // const { rdf } = ns; const rdf = { @@ -31,7 +31,7 @@ graph.forObjects( (o: Quad_Object) => { - subjType = o as NamedNode; + subjType = o as NamedNode; }, subj, rdfType,