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
This is emitting a unused alias warning, but the warning is used:
defmodule Explorer.DataFrameTest do
alias Explorer.Series
def mod do
alias Explorer.Series
Series.__info__(:module)
end
def foo do
Series.__info__(:module)
end
end