Remove unused import

This commit is contained in:
Leonid Logvinov 2018-02-20 12:03:21 -08:00
parent 7b67afae06
commit 0fb81a11a8
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4

View File

@ -1,7 +1,7 @@
import { assert as sharedAssert } from '@0xproject/assert'; import { assert as sharedAssert } from '@0xproject/assert';
// We need those two unused imports because they're actually used by sharedAssert which gets injected here // We need those two unused imports because they're actually used by sharedAssert which gets injected here
// tslint:disable-next-line:no-unused-variable // tslint:disable-next-line:no-unused-variable
import { Schema, SchemaValidator } from '@0xproject/json-schemas'; import { Schema } from '@0xproject/json-schemas';
// tslint:disable-next-line:no-unused-variable // tslint:disable-next-line:no-unused-variable
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0xproject/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0xproject/web3-wrapper';