We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seeing this in the build output, I think this is all precalculus:
<string>:33: DeprecationWarning: invalid escape sequence '\i' <string>:33: DeprecationWarning: invalid escape sequence '\i' <string>:1[8](https://github.com/TeamBasedInquiryLearning/library/actions/runs/12891520081/job/35943648758#step:7:9): DeprecationWarning: invalid escape sequence '\l' <string>:35: DeprecationWarning: invalid escape sequence '\c' <string>:4[9](https://github.com/TeamBasedInquiryLearning/library/actions/runs/12891520081/job/35943648758#step:7:10): DeprecationWarning: invalid escape sequence '\l' <string>:69: DeprecationWarning: invalid escape sequence '\c'
I believe the first one, for example, is caused by this line
library/source/precalculus/exercises/outcomes/EL/EL4/generator.sage
Line 32 in a0c531f
Note the unescaped \ in the string. Fix should be to escape the slashes.
\
The text was updated successfully, but these errors were encountered:
I think this is the \ls
\l
library/source/precalculus/exercises/outcomes/EL/EL7/generator.sage
Line 17 in a0c531f
Line 48 in a0c531f
And these are teh \cs
\c
Line 34 in a0c531f
Line 68 in a0c531f
Sorry, something went wrong.
siwelwerd
Successfully merging a pull request may close this issue.
Seeing this in the build output, I think this is all precalculus:
I believe the first one, for example, is caused by this line
library/source/precalculus/exercises/outcomes/EL/EL4/generator.sage
Line 32 in a0c531f
Note the unescaped
\
in the string. Fix should be to escape the slashes.The text was updated successfully, but these errors were encountered: