We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc4aaf commit ecf67cbCopy full SHA for ecf67cb
pyformlang/rsa/__init__.py
@@ -9,6 +9,8 @@
9
A recursive automaton.
10
:class:`pyformlang.rsa.Box`:
11
A constituent part of a recursive automaton.
12
+:class:`pyformlang.rsa.Symbol`:
13
+ A nonterminal of the Box.
14
15
References
16
----------
@@ -20,10 +22,11 @@
20
22
"""
21
23
24
from .recursive_automaton import RecursiveAutomaton
-from .box import Box
25
+from .box import Box, Symbol
26
27
28
__all__ = [
29
"RecursiveAutomaton",
30
"Box",
31
+ "Symbol",
32
]
ruff.toml
@@ -44,6 +44,7 @@ select = [
44
45
46
ignore = [
47
+ "D104",
48
"D416",
49
"ANN401",
50
0 commit comments