Skip to content

Commit

Permalink
Remove duplicate imports
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaStebaev committed Sep 18, 2023
1 parent b647ec2 commit 3fdc4d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ module.exports = {
"never"
],

"no-duplicate-imports": "warn",
"no-inline-comments": "warn",
"no-magic-numbers": "warn",
"no-mixed-operators": "warn",
Expand Down
4 changes: 2 additions & 2 deletions src/submitters/types/marionette.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {BigNumberish, BytesLike} from "ethers";
import {ethers as RawEthers} from "ethers";
import {BigNumberish, BytesLike, ethers as RawEthers} from "ethers";


export const MARIONETTE_ADDRESS = "0xD2c0DeFACe000000000000000000000000000000";

Expand Down
3 changes: 1 addition & 2 deletions src/upgrader.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import hre from "hardhat";
import hre, {network, upgrades} from "hardhat";
import chalk from "chalk";
import {ProxyAdmin} from "../typechain-types";
import {network, upgrades} from "hardhat";
import {getManifestAdmin} from "@openzeppelin/hardhat-upgrades/dist/admin";
import {getVersion} from "./version";
import {promises as fs} from "fs";
Expand Down

0 comments on commit 3fdc4d4

Please sign in to comment.