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
We just got this exception when being used in a lambda since sys.stdin is None:
File \"/var/task/nameparser/config/__init__.py\", line 95, in add_with_encoding
encoding = encoding or sys.stdin.encoding or DEFAULT_ENCODING
AttributeError: 'NoneType' object has no attribute 'encoding'",
perhaps using stdout is better as it's less likely to not be available, or expanding the check for it being None
The text was updated successfully, but these errors were encountered:
We just got this exception when being used in a lambda since sys.stdin is None:
perhaps using stdout is better as it's less likely to not be available, or expanding the check for it being None
The text was updated successfully, but these errors were encountered: