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
>>> Language("da") == Language.get("da")
True
>>> Language("da") in {Language.get("da")}
False
I know that the Language constructor specifies that It's inefficient to call this directly but it doesn't clearly say not to call it directly. And it's an easy mistake to do when it otherwise seems to work fine.
It seems that problem could easily be fixed by updating
I ran into the problem that
I know that the
Language
constructor specifies thatIt's inefficient to call this directly
but it doesn't clearly say not to call it directly. And it's an easy mistake to do when it otherwise seems to work fine.It seems that problem could easily be fixed by updating
to
but I have no idea if other parts of the code doesn't work as expected either when calling the
Language
constructor directly.The text was updated successfully, but these errors were encountered: