Rename all_ to not be private

This commit is contained in:
Emi Simpson 2023-02-07 17:01:46 -05:00
parent 1e27ab5293
commit b11f2fa8ea
Signed by: Emi
GPG Key ID: A12F2C2FFDC3D847
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ index = lambda i: SemEdComb(SemEdComb.INDEX(i), f'index({i})')
index_tup = lambda i: SemEdComb(SemEdComb.INDEX_TUP(i), f'index_tup({i})')
first = SemEdComb(SemEdComb.FIRST, 'first')
second = SemEdComb(SemEdComb.SECOND, 'second')
_all = SemEdComb(SemEdComb.ALL, 'all')
all_ = SemEdComb(SemEdComb.ALL, 'all')
# Tail call optimizing recursion
@dataclass