Skip to content

Commit e9a4f2a

Browse files
committed
update docstring
1 parent fa79ef7 commit e9a4f2a

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

statica/validation.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
"""
22
The backus naur grammar for types is as follows:
3-
T ::= Statica | int | float | str | None | (T1 | T2) | list[T] | set[T] | dict[T1, T2]
3+
T ::= Statica
4+
| int
5+
| float
6+
| str
7+
| None
8+
| (T1 | T2)
9+
| list[T]
10+
| set[T]
11+
| dict[T1, T2]
12+
| Literal[V1, ...]
13+
414
515
Where:
616
- Statica: A class that inherits from Statica

0 commit comments

Comments
 (0)