Skip to content

Commit 2333536

Browse files
authored
Fix for issue #5637 (#5638)
The `modules.py` argument parser does not understand the argument `--list`; it needs to be `list`.
1 parent f904a09 commit 2333536

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: docs/dev/modules.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ That's it! Now, you can follow the [Serialization guide](/cirq/dev/serialization
9898
To iterate through modules, you can list them by invoking `dev_tools/modules.py`.
9999

100100
```bash
101-
python dev_tools/modules.py --list
101+
python dev_tools/modules.py list
102102
```
103103

104104
There are different modes of listing (e.g the folder, package-path, top level package),
105-
you can refer to `python dev_tools/modules.py --list --help` for the most up to date features.
105+
you can refer to `python dev_tools/modules.py list --help` for the most up to date features.

0 commit comments

Comments
 (0)