Skip to content

Commit bbedba2

Browse files
committed
Use a underscore instead of hyphen in module name
The hyphen is not pythonic.
1 parent cec7d39 commit bbedba2

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

scijava-ops-tutorial/scripts/ops-gateway.py renamed to scijava-ops-tutorial/scripts/ops_gateway.py

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
"""
2-
TODO: Module description.
2+
Classes
3+
-------
4+
5+
- OpsNamespace
6+
- OpsGateway
7+
8+
Functions
9+
---------
10+
11+
- init
12+
13+
Variables
14+
---------
15+
16+
- `ops`
17+
18+
Example
19+
-------
20+
21+
- Interactive Python session:
22+
python -i ops-gateway.py
23+
- Module import:
24+
>>> import ops-gateway
25+
>>> ops = ops-gateway.init()
326
"""
427

528
from types import MethodType

0 commit comments

Comments
 (0)