diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-02-21 04:03:21 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-02-21 04:03:21 +0800 |
commit | 0fb81a11a87eb24f82d459375803904e7795e6a4 (patch) | |
tree | 9c6a8621cefdab5dd673a0fcf7c738b96351c515 | |
parent | 7b67afae06c93290e6d8c4a4f0de2435f31ae714 (diff) | |
download | dexon-sol-tools-0fb81a11a87eb24f82d459375803904e7795e6a4.tar dexon-sol-tools-0fb81a11a87eb24f82d459375803904e7795e6a4.tar.gz dexon-sol-tools-0fb81a11a87eb24f82d459375803904e7795e6a4.tar.bz2 dexon-sol-tools-0fb81a11a87eb24f82d459375803904e7795e6a4.tar.lz dexon-sol-tools-0fb81a11a87eb24f82d459375803904e7795e6a4.tar.xz dexon-sol-tools-0fb81a11a87eb24f82d459375803904e7795e6a4.tar.zst dexon-sol-tools-0fb81a11a87eb24f82d459375803904e7795e6a4.zip |
Remove unused import
-rw-r--r-- | packages/0x.js/src/utils/assert.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/src/utils/assert.ts b/packages/0x.js/src/utils/assert.ts index f81e02f78..c21f2dbca 100644 --- a/packages/0x.js/src/utils/assert.ts +++ b/packages/0x.js/src/utils/assert.ts @@ -1,7 +1,7 @@ import { assert as sharedAssert } from '@0xproject/assert'; // We need those two unused imports because they're actually used by sharedAssert which gets injected here // 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 import { BigNumber } from '@0xproject/utils'; import { Web3Wrapper } from '@0xproject/web3-wrapper'; |