wbcrm 1.51.0__py2.py3-none-any.whl → 1.51.2__py2.py3-none-any.whl

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.

Potentially problematic release.


This version of wbcrm might be problematic. Click here for more details.

@@ -15,7 +15,7 @@ from django.db.models.signals import m2m_changed, post_delete, post_save
15
15
  from django.dispatch import receiver
16
16
  from django.template.loader import render_to_string
17
17
  from django.utils import timezone
18
- from django.utils.translation import gettext, ngettext_lazy, pgettext_lazy
18
+ from django.utils.translation import gettext, pgettext_lazy
19
19
  from django.utils.translation import gettext_lazy as _
20
20
  from django_fsm import FSMField, transition
21
21
  from dynamic_preferences.registries import global_preferences_registry
@@ -309,20 +309,16 @@ class Activity(Recurrence):
309
309
  if missing_companies := missing.get("missing_companies_by_participant", None):
310
310
  participants_with_missing_companies = [participant.computed_str for participant in missing_companies]
311
311
  errors["companies"] = [
312
- ngettext_lazy(
313
- "You need to enter an employer for {persons}",
312
+ _(
314
313
  "You need to enter an employer for: {persons}",
315
- len(participants_with_missing_companies),
316
314
  ).format(persons=", ".join(participants_with_missing_companies))
317
315
  ]
318
316
 
319
317
  if missing_participants := missing.get("missing_participants_by_company", None):
320
318
  companies_with_missing_participants = [company.name for company in missing_participants]
321
319
  errors["participants"] = [
322
- ngettext_lazy(
323
- "You need to enter an employee for {companies}",
320
+ _(
324
321
  "You need to enter an employee for: {companies}",
325
- len(companies_with_missing_participants),
326
322
  ).format(companies=", ".join(companies_with_missing_participants))
327
323
  ]
328
324
  return errors
@@ -609,21 +605,17 @@ class Activity(Recurrence):
609
605
  participants_with_missing_companies = [
610
606
  participant.computed_str for participant in missing["missing_employers_for_participant"]
611
607
  ]
612
- message += ngettext_lazy(
613
- "You did not supply an employer for {persons}<br />",
614
- "For the following participants you did not supply an employer: {persons}<br />",
615
- len(participants_with_missing_companies),
616
- ).format(persons=", ".join(participants_with_missing_companies))
608
+ message += _("For the following participants you did not supply an employer: {persons}<br />").format(
609
+ persons=", ".join(participants_with_missing_companies)
610
+ )
617
611
 
618
612
  if missing.get("missing_employees_for_company"):
619
613
  companies_with_missing_participants = [
620
614
  company.computed_str for company in missing["missing_employees_for_company"]
621
615
  ]
622
- message += ngettext_lazy(
623
- "You did not supply an employee for {companies}<br />",
624
- "For the following companies you did not supply an employee: {companies}<br />",
625
- len(companies_with_missing_participants),
626
- ).format(companies=", ".join(companies_with_missing_participants))
616
+ message += _("For the following companies you did not supply an employee: {companies}<br />").format(
617
+ companies=", ".join(companies_with_missing_participants)
618
+ )
627
619
 
628
620
  return message
629
621
 
@@ -7,7 +7,7 @@ from django.db.models import Q
7
7
  from django.utils import timezone
8
8
  from django.utils.functional import cached_property
9
9
  from django.utils.translation import gettext as _
10
- from django.utils.translation import gettext_lazy, ngettext
10
+ from django.utils.translation import gettext_lazy
11
11
  from psycopg.types.range import TimestamptzRange
12
12
  from rest_framework.exceptions import ValidationError
13
13
  from rest_framework.reverse import reverse
@@ -398,10 +398,8 @@ class ActivityModelSerializer(ActivityModelListSerializer):
398
398
  groups = ", ".join(
399
399
  list(dict.fromkeys(missing_members.values_list("groups__title", flat=True)))
400
400
  )
401
- error_message = ngettext(
402
- "{missing_members} {util_str} of the group: {groups}\n. You cannot remove members of selected groups.",
401
+ error_message = _(
403
402
  "{missing_members} {util_str} of the following group(s): {groups}\n. You cannot remove members of selected groups.",
404
- len(dict.fromkeys(missing_members.values_list("groups__title", flat=True))),
405
403
  ).format(missing_members=missing_members_computed_strs, util_str=util_str, groups=groups)
406
404
 
407
405
  raise ValidationError({"groups": error_message})
@@ -1,3 +1,6 @@
1
+ from contextlib import suppress
2
+
3
+ from dynamic_preferences.exceptions import NotFoundInRegistry
1
4
  from dynamic_preferences.registries import global_preferences_registry
2
5
  from wbcore.utils.importlib import import_from_dotted_path
3
6
 
@@ -5,6 +8,7 @@ from wbcore.utils.importlib import import_from_dotted_path
5
8
  def get_backend():
6
9
  from wbcrm.synchronization.activity.controller import ActivityController
7
10
 
8
- if backend := global_preferences_registry.manager()["wbactivity_sync__sync_backend_calendar"]:
9
- backend = import_from_dotted_path(backend)
10
- return ActivityController(backend=backend)
11
+ with suppress(NotFoundInRegistry):
12
+ if backend := global_preferences_registry.manager()["wbactivity_sync__sync_backend_calendar"]:
13
+ backend = import_from_dotted_path(backend)
14
+ return ActivityController(backend=backend)
@@ -255,12 +255,12 @@ class ActivityChartModelViewSet(viewsets.ChartViewSet):
255
255
  df = pd.DataFrame(
256
256
  queryset.values("type", "start_date", "end_date", "activity_type_color", "activity_type_title")
257
257
  )
258
- df["start_date"] = df["start_date"].dt.floor("H")
259
- df["end_date"] = df["end_date"].dt.ceil("H")
258
+ df["start_date"] = df["start_date"].dt.floor("h")
259
+ df["end_date"] = df["end_date"].dt.ceil("h")
260
260
  df = (
261
261
  pd.concat(
262
262
  [
263
- pd.DataFrame(index=pd.date_range(r.start_date, r.end_date, freq="1H")).assign(
263
+ pd.DataFrame(index=pd.date_range(r.start_date, r.end_date, freq="1h")).assign(
264
264
  type=r.type,
265
265
  activity_type_color=r.activity_type_color,
266
266
  activity_type_title=r.activity_type_title,
@@ -275,7 +275,7 @@ class ActivityChartModelViewSet(viewsets.ChartViewSet):
275
275
  x="Period",
276
276
  color="Type",
277
277
  labels="Type",
278
- nbins=len(pd.date_range(df["Period"].min(), df["Period"].max(), freq="1H")) + 1,
278
+ nbins=len(pd.date_range(df["Period"].min(), df["Period"].max(), freq="1h")) + 1,
279
279
  )
280
280
  fig.update_layout(
281
281
  paper_bgcolor="rgba(0,0,0,0)",
@@ -42,6 +42,7 @@ class AccountDisplayConfig(DisplayViewConfig):
42
42
  filter_key="parent",
43
43
  filter_depth=1,
44
44
  # lookup="id_repr",
45
+ filter_blacklist=["parent__isnull"],
45
46
  list_endpoint=reverse(
46
47
  "wbcrm:account-list",
47
48
  args=[],
@@ -23,10 +23,3 @@ class AccountRoleAccountEndpointConfig(EndpointViewConfig):
23
23
  class InheritedAccountRoleAccountEndpointConfig(EndpointViewConfig):
24
24
  def get_endpoint(self, **kwargs):
25
25
  return None
26
-
27
- def get_list_endpoint(self, **kwargs):
28
- return reverse(
29
- "wbcrm:account-inheritedrole-list",
30
- args=[self.view.kwargs["account_id"]],
31
- request=self.request,
32
- )
@@ -1,6 +1,3 @@
1
- from datetime import timedelta
2
-
3
- from django.utils import timezone
4
1
  from django.utils.translation import gettext as _
5
2
  from wbcore.menus import ItemPermission, MenuItem
6
3
  from wbcore.permissions.shortcuts import is_internal_user
@@ -10,13 +7,6 @@ def default_activity_create_get_params(request) -> dict:
10
7
  return {"participants": request.user.profile.id}
11
8
 
12
9
 
13
- def default_activitychart_get_params(request) -> dict:
14
- current_last_week_date_start = timezone.now().date() - timedelta(days=7)
15
- current_next_week_date_end = timezone.now().date() + timedelta(days=7)
16
-
17
- return {"period": f"{current_last_week_date_start:%Y-%m-%d},{current_next_week_date_end:%Y-%m-%d}"}
18
-
19
-
20
10
  ACTIVITYTYPE_MENUITEM = MenuItem(
21
11
  label=_("Activity Types"),
22
12
  endpoint="wbcrm:activitytype-list",
@@ -41,7 +31,6 @@ ACTIVITY_MENUTITEM = MenuItem(
41
31
  permission=ItemPermission(
42
32
  method=lambda request: is_internal_user(request.user), permissions=["wbcrm.view_activity"]
43
33
  ),
44
- # endpoint_get_parameters={"only_recent": True}, # TODO confirm that this can actually be commented out
45
34
  add=MenuItem(
46
35
  label=_("Create Activity"),
47
36
  endpoint="wbcrm:activity-list",
@@ -57,5 +46,4 @@ ACTIVITYCHART_MENUITEM = MenuItem(
57
46
  permission=ItemPermission(
58
47
  method=lambda request: is_internal_user(request.user), permissions=["wbcrm.view_activity"]
59
48
  ),
60
- endpoint_get_parameters=default_activitychart_get_params,
61
49
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wbcrm
3
- Version: 1.51.0
3
+ Version: 1.51.2
4
4
  Summary: A workbench module that contains all the functionality related to a customer relationship management.
5
5
  Author-email: Christopher Wittlinger <c.wittlinger@stainly.com>
6
6
  Requires-Dist: django-eventtools==1.*
@@ -20,14 +20,19 @@ wbcrm/factories/groups.py,sha256=OWmGk-H9zEnLOo_5oe4czSVvAUUOfrpUmVHgG9xvtak,621
20
20
  wbcrm/factories/products.py,sha256=UuhCaSZsrmIA8ccj80gAaNNlAmhcKLjwDwNOvE3BHro,244
21
21
  wbcrm/filters/__init__.py,sha256=ZX47xCq18N_FTvvFCk2mIlFoValKFaTcxw9xv8qdn0E,305
22
22
  wbcrm/filters/accounts.py,sha256=WwBNxXnyevdP_k7yHCgy-5eM-ILc8MgVTltPcAmu760,2738
23
- wbcrm/filters/activities.py,sha256=y1MmnXlypIcDfj4P3oa3VbAHY1LTwGamUeeX6h6XbDs,7783
23
+ wbcrm/filters/activities.py,sha256=-1BIlnMn5fDyqt3Ze9lmEPXi1DU-rpUQirrnba4kp7I,8233
24
24
  wbcrm/filters/groups.py,sha256=X6XC5nUZOlOwuJJxjl0tD9-FfzFkwIDeIXUdbQ1GHMs,624
25
25
  wbcrm/filters/products.py,sha256=K1ZJ4hhMibv0YBnQyzlPqg4KkT-uq_fGVNVJPzlP8j0,1204
26
26
  wbcrm/filters/signals.py,sha256=cd4LSwPUwutLI4CcFjzADVhv2Bc0-XkYoiaojO0rkvs,3820
27
27
  wbcrm/fixtures/wbcrm.json,sha256=Z6EwzO1nqRvEP8-WzHXJJGCP7SK6Sb86dTgjJRzVw2U,33896
28
28
  wbcrm/kpi_handlers/activities.py,sha256=xjq6dQUToDmYZFqaZm3Gj3deQnPeUZcH4VS2qvVtIXY,7900
29
- wbcrm/locale/de/LC_MESSAGES/django.po,sha256=imWmc6GAdOzknaBpQbFGgS4Dz0sws2NClgc9B3IfPOM,48985
30
- wbcrm/locale/fr/LC_MESSAGES/django.po,sha256=06ABRDZvhdOiVhrarJUxL1I4X2_5bLcrxfk2IO7rxw8,35464
29
+ wbcrm/locale/de/LC_MESSAGES/django.mo,sha256=BZIIiBu8WMoQb8Qw_9fA2dxbLiSv9rrMUEYVAhra7qQ,28100
30
+ wbcrm/locale/de/LC_MESSAGES/django.po,sha256=lXm59GXWz7arKR60zc-I-Di3WrLO6LQvdmswcCBIC7c,44007
31
+ wbcrm/locale/de/LC_MESSAGES/django.po.translated,sha256=jNLVXzyCyHmgei5FDR-qt3mXjK2NJXS4YPFivlu4fNE,49041
32
+ wbcrm/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
33
+ wbcrm/locale/en/LC_MESSAGES/django.po,sha256=plTLpQy5CrczDKLQbU6TGoW1ZDI3VNNz_xi1mEkSmj8,32455
34
+ wbcrm/locale/fr/LC_MESSAGES/django.mo,sha256=t4lh3zX7kshbDAFzXa5HU_YGPXkPzKqODNXL2MeZ5KQ,429
35
+ wbcrm/locale/fr/LC_MESSAGES/django.po,sha256=gjprXC-vdXWy_w0m8koNXW1BnF18WS_zTY6Ip6v0S6s,32550
31
36
  wbcrm/migrations/0001_initial_squashed_squashed_0032_productcompanyrelationship_alter_product_prospects_and_more.py,sha256=tI2lU8Z8oW_-FexgquJOC41HwqFO6OyLuRtVY9Es2Ho,166228
32
37
  wbcrm/migrations/0002_alter_activity_repeat_choice.py,sha256=OBl6j8p4l3f5k1T3TzOgQtunSXJx0M3Uk-gAuPjPxkM,1187
33
38
  wbcrm/migrations/0003_remove_activity_external_id_and_more.py,sha256=Lz4RTsGJPnR2nKZ_FH_WSD22IRVqZ6_aZcleTJT4pSM,2097
@@ -48,7 +53,7 @@ wbcrm/migrations/0017_event.py,sha256=PzhAVAa2z4itzctQBz-6i__aRDh3TDe029F8leE34W
48
53
  wbcrm/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
54
  wbcrm/models/__init__.py,sha256=23U2eBeZStYgUKSGfi3q88JtfqfbNTk7MbnLEAGw1gk,287
50
55
  wbcrm/models/accounts.py,sha256=Wtr8QtHWSnkVmbdZqY64kQJaZ5UDqSfkIKSUaqxBirI,25435
51
- wbcrm/models/activities.py,sha256=dRYA04_lHrr6ONZAk2hnzmlPWIKUBcsElKq_PApGSL8,54411
56
+ wbcrm/models/activities.py,sha256=f_BQ-NXCIILzK5C0ST287Ai78oHClAIVcsCCXHfln-w,53828
52
57
  wbcrm/models/events.py,sha256=jUHArKuZlPzMXpzwrtxM0fI6POF2-ETybtphjPQxqqA,393
53
58
  wbcrm/models/groups.py,sha256=att5YADwTLoI5NmSoiMhOBJ8qyBbdKubPGMI2dXUCf0,4345
54
59
  wbcrm/models/products.py,sha256=q7BOU3hPGZwolVfOPkkAFhGYYBRDGHU8ldKui9FAMPQ,2472
@@ -58,7 +63,7 @@ wbcrm/models/llm/analyze_relationship.py,sha256=AsOXela63Mqz-5-xo_vOc5mMfDazO-Ix
58
63
  wbcrm/report/activity_report.py,sha256=Y2NveP9u6CeXImXtxR4XfZK-2CFBa5CnUG-jx35Msnc,4843
59
64
  wbcrm/serializers/__init__.py,sha256=qKwo5e-Ix-Iow1RRdKFC0uZQmuSHzc8DIypIhi_E8HI,726
60
65
  wbcrm/serializers/accounts.py,sha256=F7fJAa4lamkuQxfiLU08iE4vCaDtiMtcxwTFowxHnMk,5552
61
- wbcrm/serializers/activities.py,sha256=krziaCnOvDCvelteRiJp7LT1whDUQKopKKtXDEwxQm4,21847
66
+ wbcrm/serializers/activities.py,sha256=Y5CHgnbDLA9HKS6WxYrs5fpjbSyOKvZt92nSBrFObN0,21585
62
67
  wbcrm/serializers/groups.py,sha256=YqiHGiytbD1lIuSUEBk4CwlwipAFs_uh2V9DZG7JukQ,783
63
68
  wbcrm/serializers/products.py,sha256=xBv5l2xgrUQRIjlqe_qKTiWDcp0lOq5FHDBms9lm_V0,2002
64
69
  wbcrm/serializers/recurrence.py,sha256=0I42almPuwWDsRfpxig3rt_U_xGPsekBr8jQKF1BKrA,4589
@@ -80,7 +85,7 @@ wbcrm/synchronization/activity/backend.py,sha256=DVj27wLv5D6YMG_9xlh9CPN7wfgCABa
80
85
  wbcrm/synchronization/activity/controller.py,sha256=I2kT7eQffTNr_wxPFAKIfy9wfiQKD60BXW9ON7srff4,31403
81
86
  wbcrm/synchronization/activity/dynamic_preferences_registry.py,sha256=59K5Xq50IRg4yrBUevefi-0jDZtmT3JoVT3qbniJFDQ,4247
82
87
  wbcrm/synchronization/activity/preferences.py,sha256=7grSPy1oECqBK598UP8kO_t7sUNFCv6mRkEmz3LEYng,1009
83
- wbcrm/synchronization/activity/shortcuts.py,sha256=l8W9ySulTJ5PmSqAZ-HvQUb8uV3Mb_VMweMmhjm5C54,430
88
+ wbcrm/synchronization/activity/shortcuts.py,sha256=pj-HHna2IeD7g3X2U5RJLqXAerE_KW-xNALIDbNNSyo,576
84
89
  wbcrm/synchronization/activity/tasks.py,sha256=NrCjx8WMhdsFwe1PbLwV2tdFBLg-XrnuFJt4yjlv9Ow,607
85
90
  wbcrm/synchronization/activity/urls.py,sha256=yNld96CD88zeWimGbUmuiq5OjTBLEGKpwvF2I25oBD8,168
86
91
  wbcrm/synchronization/activity/utils.py,sha256=pNXtMRBr-u5vRaonyhkSIYHHzt7q3gEw-VGLBSFXrSI,1427
@@ -138,7 +143,7 @@ wbcrm/tests/e2e/e2e_wbcrm_utility.py,sha256=NB2pQXEzr8-S7cMGOs6w5IrT3gdcuzwz5x3a
138
143
  wbcrm/tests/e2e/test_e2e.py,sha256=p4elt_MWXWxBy6i8ayKdqTxHARiaozdd9xmi9_orQr4,16520
139
144
  wbcrm/viewsets/__init__.py,sha256=aoi2Hry7C6CixqV7ZIVrVPSjrcRcdRkE3zBmm1Va1Qo,668
140
145
  wbcrm/viewsets/accounts.py,sha256=gO7nb4cYtm4qZO5tpcQ2akoH54F6Uq01VFpshq5pdvQ,4458
141
- wbcrm/viewsets/activities.py,sha256=6fFuv8AqrFeh7rPOJyBdV0D2hlUq_8_FeRQtEhBVwyQ,12873
146
+ wbcrm/viewsets/activities.py,sha256=ifN6evcgYStW0hCN2v9rWrBQQynkysSTyF2Ccrh5754,12873
142
147
  wbcrm/viewsets/groups.py,sha256=2W529zW2m1DIRYTxn8nEDYjWjQAHzh6yV7Owvf3KZA4,1414
143
148
  wbcrm/viewsets/mixins.py,sha256=pqyP00VNA5jJL9LwvIw7Mfc-zN-z5yJ-cAblZY7o7c4,1113
144
149
  wbcrm/viewsets/products.py,sha256=aby4V6F-7WzosKIbYV_CEguXrNo2IN8ZjUTcUGGmX8w,2157
@@ -148,18 +153,18 @@ wbcrm/viewsets/buttons/accounts.py,sha256=8r07RQ5l-MZQO3yY-NT5D18nJs_lMVweYi28lH
148
153
  wbcrm/viewsets/buttons/activities.py,sha256=jb-AHCTGmDgfObnboXcsqF8bqCZE2o4aTk0Le5qX1pI,3880
149
154
  wbcrm/viewsets/buttons/signals.py,sha256=DbY78n1T_zqs16DW5x_5gsFyd-GUN1KrExWLUvT5-YI,729
150
155
  wbcrm/viewsets/display/__init__.py,sha256=Ryjs6DW42eFHuh3_uW91blo0pgfR07dCDeZzOU12mNM,357
151
- wbcrm/viewsets/display/accounts.py,sha256=Ai1pUYqWmuT_55FpnFU5xTvXhmDc3CZqjqpxbMtozOA,4656
156
+ wbcrm/viewsets/display/accounts.py,sha256=rfgcMwTNX8OMZTUoa7l9dFl8pQwH0iNZ6EQm_7G01LI,4713
152
157
  wbcrm/viewsets/display/activities.py,sha256=EPUql__9q788y-hJ0_9l7vALMAHsMOgnHfmutRfArcQ,18653
153
158
  wbcrm/viewsets/display/groups.py,sha256=fwmqaWrGWS6GwCi2PkjH9dbgwx5uf8pebXrjDB5tIeQ,785
154
159
  wbcrm/viewsets/display/products.py,sha256=D5AmkE4HqZPcablhBmnQRpgCjKMD45vCaKjoAAnvY20,3988
155
160
  wbcrm/viewsets/endpoints/__init__.py,sha256=-AKt5SNWdmKSy_H7EWUNpQWaDNURoA1v68HWPuWeH4I,340
156
- wbcrm/viewsets/endpoints/accounts.py,sha256=jQLThgETptmcgIqbmgVkO1PYv8ryDiRk-wzrkf7Vy1Y,980
161
+ wbcrm/viewsets/endpoints/accounts.py,sha256=FszmIqf52EJNEbtTY1vaK8kVKz4LrC_A3DGkdURBsJg,769
157
162
  wbcrm/viewsets/endpoints/activities.py,sha256=UGtDJ4GyedyVKCowTlgKhnhZYKiMVU8D81z2CGfmj0w,1369
158
163
  wbcrm/viewsets/endpoints/groups.py,sha256=JLPEEtyKbCDb0R7aCdHtrG3XWyfCduW1zdOwK6QcfIQ,282
159
164
  wbcrm/viewsets/endpoints/products.py,sha256=1sjCon-dgWwwwCJV_KxRGRiHLDVv1t60Vv8ezNpiXCU,362
160
165
  wbcrm/viewsets/menu/__init__.py,sha256=V2ns9vGWIkkN4PsJHvGVnbiQUaGcx9VFA2UV65l8nXA,221
161
166
  wbcrm/viewsets/menu/accounts.py,sha256=XyfLf-3EmMDUyVeGEG4-THIifIwAp5RnX9UCm0epG2g,630
162
- wbcrm/viewsets/menu/activities.py,sha256=rp10r9WsI_ji7YPfLRhWP9ieGG6BwNF3G6pH_Fr4msU,2152
167
+ wbcrm/viewsets/menu/activities.py,sha256=BvzrUtMj9xk-ybG4y6a36nGN01CtsRkzqQUEpjewUB0,1602
163
168
  wbcrm/viewsets/menu/groups.py,sha256=cTRT9-TVWvzx0-fk_OrBYujqZkqdw88_Q2lDfBfIwoU,606
164
169
  wbcrm/viewsets/menu/products.py,sha256=0YwZwTakoR92_l5kjX4I0pCAnx--OTIlTZ0HkB3lFPw,654
165
170
  wbcrm/viewsets/previews/__init__.py,sha256=EWvN0AiXSj7XzT48LfT6EH-ZkrzCQcM9zMKKDUsZ_Pc,46
@@ -171,6 +176,6 @@ wbcrm/viewsets/titles/products.py,sha256=cFAK5zljjybabk2U0KzPT2PVfV5vmO_UlJd6QlI
171
176
  wbcrm/viewsets/titles/utils.py,sha256=IaHQTmEG2OwIHS1bRv7sjuT950wefUJNi3yvPdrpNEs,1144
172
177
  wbcrm/workflows/__init__.py,sha256=biwXXPkVJugT9Vc1cwbInAUY8EnVmOauxdPz7e_2w_A,32
173
178
  wbcrm/workflows/assignee_methods.py,sha256=L7ymErtcpFgXdTMTj_lDOVJqsLAGLNT6qMlrkHGuXWM,999
174
- wbcrm-1.51.0.dist-info/METADATA,sha256=kQQy6dC9NXdywcrzyRBolzPoZDNEkCzdUsXYimLatuY,450
175
- wbcrm-1.51.0.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
176
- wbcrm-1.51.0.dist-info/RECORD,,
179
+ wbcrm-1.51.2.dist-info/METADATA,sha256=3RLs_jIxbdriBW_-h73TuaKA7z5oFP7cfltutpnTdRo,450
180
+ wbcrm-1.51.2.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
181
+ wbcrm-1.51.2.dist-info/RECORD,,
File without changes