arcane-flask 2.0.2__tar.gz → 2.0.3__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.3
2
2
  Name: arcane-flask
3
- Version: 2.0.2
3
+ Version: 2.0.3
4
4
  Summary: Utility functions for flask apps.
5
5
  Author: Arcane
6
6
  Author-email: product@wearcane.com
@@ -28,7 +28,7 @@ def send_tracking_information(
28
28
  """ Send pubsub message to the tracking cloud function"""
29
29
 
30
30
  users_query = datastore_client.query(kind='users')
31
- users_query.add_filter(filter=PropertyFilter('email', '=', email))
31
+ users_query.add_filter('email', '=', email)
32
32
  if users_query is None:
33
33
  adscale_log(ServiceEnum.TRACKING, f'User {email} is not an Adscale User. Tracking info will not be saved.')
34
34
  else:
@@ -1,7 +1,7 @@
1
1
  [tool.poetry]
2
2
  name = "arcane-flask"
3
3
 
4
- version = "2.0.2"
4
+ version = "2.0.3"
5
5
 
6
6
 
7
7
  description = "Utility functions for flask apps."
File without changes