You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all really nice library! I did however notice a small bug in the chatette.parsing.utils file
On line 49-56 it states the following:
escapable_chars = [
ESCAPEMENT_SYM,
COMMENT_SYM, OLD_COMMENT_SYM,
UNIT_START_SYM, UNIT_START_SYM,
RAND_GEN_SYM, RAND_GEN_PERCENT_SYM,
VARIATION_SYM,
ARG_SYM,
CASE_GEN_SYM,
]
However, line 52 repeats UNIT_START_SYM, UNIT_START_SYM twice. Instead it the second instance should be replaced with UNIT_END_SYM.
Thus it should be
escapable_chars = [
ESCAPEMENT_SYM,
COMMENT_SYM, OLD_COMMENT_SYM,
UNIT_START_SYM, UNIT_END_SYM,
RAND_GEN_SYM, RAND_GEN_PERCENT_SYM,
VARIATION_SYM,
ARG_SYM,
CASE_GEN_SYM,
]
The text was updated successfully, but these errors were encountered:
First of all really nice library! I did however notice a small bug in the chatette.parsing.utils file
On line 49-56 it states the following:
escapable_chars = [
ESCAPEMENT_SYM,
COMMENT_SYM, OLD_COMMENT_SYM,
UNIT_START_SYM, UNIT_START_SYM,
RAND_GEN_SYM, RAND_GEN_PERCENT_SYM,
VARIATION_SYM,
ARG_SYM,
CASE_GEN_SYM,
]
However, line 52 repeats UNIT_START_SYM, UNIT_START_SYM twice. Instead it the second instance should be replaced with UNIT_END_SYM.
Thus it should be
escapable_chars = [
ESCAPEMENT_SYM,
COMMENT_SYM, OLD_COMMENT_SYM,
UNIT_START_SYM, UNIT_END_SYM,
RAND_GEN_SYM, RAND_GEN_PERCENT_SYM,
VARIATION_SYM,
ARG_SYM,
CASE_GEN_SYM,
]
The text was updated successfully, but these errors were encountered: