strideutils 0.2.7__tar.gz → 0.2.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: strideutils
3
- Version: 0.2.7
3
+ Version: 0.2.8
4
4
  Summary:
5
5
  Author: Your Name
6
6
  Author-email: you@example.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "strideutils"
3
- version = "0.2.7"
3
+ version = "0.2.8"
4
4
  description = ""
5
5
  authors = ["Your Name <you@example.com>"]
6
6
  readme = "README.md"
@@ -41,7 +41,7 @@ def get_auth(
41
41
  auth_dict = config.PUBLICSHEETS_AUTH
42
42
  if config.ENV == 'PROD':
43
43
  # Auth info is passed as a string in prod
44
- auth_dict = json.loads(cast(str, auth_dict))
44
+ auth_dict = json.loads(cast(str, auth_dict), strict=False)
45
45
  creds = service_account.Credentials.from_service_account_info(auth_dict, scopes=scopes)
46
46
  except AttributeError:
47
47
  print('Google sheets auth is not found or badly configured')
File without changes