Skip to content

Commit

Permalink
minor corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
bbyalcinkaya committed Aug 30, 2023
1 parent 0349086 commit dc61f9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ $ make elrond-loaded
To install `kmultiversx` and its dependencies into a virtual environment, run

```
# from the project's root directory
# from the 'elrond-semantics' directory
poetry -C kmultiversx install
```

After the installation, the Python package `kmultiversx` and CLI tools `mandos` and `foundry` will be available via the `poetry run` command

```
poetry -C run mandos --help
poetry -C run foundry --help
poetry -C kmultiversx run mandos --help
poetry -C kmultiversx run foundry --help
```

Or you can activate the virtual environment managed by `poetry` and use the commands directly
Expand Down
2 changes: 1 addition & 1 deletion kmultiversx/src/kmultiversx/foundry.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def load_input_json(test_dir: str) -> dict:
with open(join(test_dir, INPUT_FILE_NAME), 'r') as f:
return json.load(f)
except FileNotFoundError:
raise FileNotFoundError('"{INPUT_FILE_NAME}" not found in "{test_dir}"') from None
raise FileNotFoundError(f'"{INPUT_FILE_NAME}" not found in "{test_dir}"') from None


def load_wasm(filename: str) -> KInner:
Expand Down

0 comments on commit dc61f9d

Please sign in to comment.