Skip to content

Commit 9874d06

Browse files
Add quotes to memory monitor command example (#3430)
### Changes As in the description.
1 parent 45543f1 commit 9874d06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ python memory_monitor.py --log-dir ./allocation_logs python allocate.py
2121
```
2222

2323
```shell
24-
python memory_monitor.py optimum-cli export openvino ...
24+
python memory_monitor.py "optimum-cli export openvino ..."
2525
```
2626

2727
### Example 2. As a python Module

tools/memory_monitor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def _subtract_first_element(data):
350350
description="Memory Monitor Tool. Monitors memory for an executable and saves logs at specified location.",
351351
epilog="Examples:\n"
352352
" python memory_monitor.py --log-dir ./allocation_logs python allocate.py\n"
353-
" python memory_monitor.py optimum-cli export openvino ...",
353+
' python memory_monitor.py "optimum-cli export openvino ..."',
354354
formatter_class=argparse.RawTextHelpFormatter,
355355
)
356356
parser.add_argument(

0 commit comments

Comments
 (0)