-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
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
[Trivial] Remove warning #1137
[Trivial] Remove warning #1137
Conversation
When integrating Symbolics.jl with Latexify and ImageInTerminal, the following warning is emitted: ``` WARNING: method definition for supremum at /Users/nathompson7/.julia/packages/Symbolics/HDE84/src/domains.jl:22 declares type variable T but does not use it. ``` Fix it by removing the variable declaration.
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #1137 +/- ##
===========================================
- Coverage 77.07% 10.12% -66.95%
===========================================
Files 32 35 +3
Lines 3533 3623 +90
===========================================
- Hits 2723 367 -2356
- Misses 810 3256 +2446 ☔ View full report in Codecov by Sentry. |
To reproduce: using Latexify
using Symbolics
using ImageInTerminal
function main()
@variables x::Real y::Real
expression = 2*x*y
latexify(expression) |> s -> render(s, dpi=400)
end
if !isinteractive()
main()
end Output:
Additional information:
|
When integrating Symbolics.jl with Latexify and ImageInTerminal, the following warning is emitted:
Fix it by removing the variable declaration.