Closed nikstar closed 1 year ago
This gets rid of unnecessary _ = at call site:
_ =
// before _ = try await api.setTdlibParameters(...) // after try await api.setTdlibParameters(...)
That's something @levochkaa has been requesting for a long time. Nicely done @nikstar!
This gets rid of unnecessary
_ =
at call site: