Skip to content

Commit 2eeb213

Browse files
committed
🐛 Fix abs. paths in wake open with Etherscan standard JSON
1 parent cc3328a commit 2eeb213

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

wake/cli/open.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,7 @@ async def open_address(
253253
sys.exit(65)
254254

255255
sources = {
256-
project_dir / path: source.content
257-
for path, source in standard_input.sources.items()
256+
path: source.content for path, source in standard_input.sources.items()
258257
}
259258
except ValidationError as e:
260259
try:

0 commit comments

Comments
 (0)