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
When I write this code: {:ok, db} = Duckdbex.open("ticker.db")
the Elixir Dialyzer gives me this error:
The function call will not succeed.
Duckdbex.open(<<116, 105, 99, 107, 101, 114, 46, 100, 98>>)
will never return since the 1st arguments differ
from the success typing arguments
Although the code works, I can't figure out why it causes an issue for dialyzer to report as an error.
The text was updated successfully, but these errors were encountered:
When I write this code:
{:ok, db} = Duckdbex.open("ticker.db")
the Elixir Dialyzer gives me this error:
Although the code works, I can't figure out why it causes an issue for dialyzer to report as an error.
The text was updated successfully, but these errors were encountered: