Skip to content

Commit c767dbc

Browse files
committed
fix lint
1 parent 5c66348 commit c767dbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/hardhat-chai-matchers/src/internal/addressable.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function override(
2828
// otherwise undefined is returned.
2929
function tryGetAddressSync(value: any): string | undefined {
3030
value = tryDereference(value, "address");
31-
if(isAddressable(value)) {
31+
if (isAddressable(value)) {
3232
value = (value as any).address ?? (value as any).target;
3333
}
3434
if (isAddress(value)) {

0 commit comments

Comments
 (0)