# HG changeset patch # User drewp@bigasterisk.com # Date 1581486935 28800 # Node ID 58676ebdce0f057b97fc3bc1fe3d9b6aca11c800 # Parent 0ba4bd0ba245082fb1ac09c9e64019207c79819e sort and dedup imports diff -r 0ba4bd0ba245 -r 58676ebdce0f src/graph_view.ts --- 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,