Echooff3

Results 2 comments of Echooff3

Running Python 3.8.5 (OSX) Downgraded scikit-learn to 0.22.2 I'm getting a different error ```bash >>> from profanity_check import predict Traceback (most recent call last): File "", line 1, in File...

If anyone is working with dotnet core on AppRunner bumping into this issue, this workaround worked for me. https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/proxy-load-balancer?view=aspnetcore-7.0#when-it-isnt-possible-to-add-forwarded-headers-and-all-requests-are-secure ``` // Program.cs app.Use((context, next) => { context.Request.Scheme = "https"; return...