wbreport 1.55.10rc0__py2.py3-none-any.whl → 1.56.0__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 wbreport might be problematic. Click here for more details.

@@ -199,7 +199,7 @@ class ReportClass(FactsheetReportMixin, ReportMixin):
199
199
  return template.render(context)
200
200
 
201
201
  @classmethod
202
- def generate_file(cls, context):
202
+ def generate_file(cls, context): # noqa: C901
203
203
  debug = False
204
204
  # Product Data
205
205
  # Main Feature table as dictionary
@@ -199,7 +199,7 @@ class ReportClass(FactsheetReportMixin, ReportMixin):
199
199
  return template.render(context)
200
200
 
201
201
  @classmethod
202
- def generate_file(cls, context):
202
+ def generate_file(cls, context): # noqa: C901
203
203
  debug = False
204
204
 
205
205
  main_features_dict = context["information_table"]["Main Features"]
@@ -4,7 +4,7 @@ from reportlab.lib.colors import transparent
4
4
 
5
5
 
6
6
  class CustomLegend(Legend):
7
- def _defaultSwatch(self, x, thisy, dx, dy, fillColor, strokeWidth, strokeColor):
7
+ def _defaultSwatch(self, x, thisy, dx, dy, fillColor, strokeWidth, strokeColor): # noqa: N803, N802
8
8
  return Circle(
9
9
  x,
10
10
  thisy + dx / 2,
@@ -2,6 +2,7 @@ from reportlab.graphics.charts.piecharts import Pie
2
2
  from reportlab.graphics.shapes import Drawing
3
3
  from reportlab.lib import colors
4
4
  from reportlab.lib.units import cm
5
+
5
6
  from wbreport.pdf.charts.legend import CustomLegend
6
7
 
7
8
 
@@ -9,7 +10,7 @@ def get_data_and_labels_from_df(df, color_palette, percent=True):
9
10
  data = list()
10
11
  colornamepairs = list()
11
12
 
12
- for row in df.itertuples():
13
+ for index, row in enumerate(df.itertuples()):
13
14
  data.append(float(row.weighting))
14
15
 
15
16
  label = f"{row[2]*100:.1f}%" if percent else f"{row[2]:.1f}"
@@ -17,7 +17,7 @@ class LogScaleTimeSeriesPlot(LinePlot):
17
17
  super().__init__()
18
18
 
19
19
  class CustomYAxis(LogYValueAxis):
20
- def _calcTickPositions(self):
20
+ def _calcTickPositions(self): # noqa: N802
21
21
  return self._calcStepAndTickPositions()[1]
22
22
 
23
23
  self.xValueAxis = NormalDateXValueAxis()
@@ -30,6 +30,7 @@ from reportlab.platypus import (
30
30
  from reportlab.platypus.flowables import KeepTogether, TopPadder
31
31
  from reportlab.platypus.frames import Frame
32
32
  from svglib.svglib import svg2rlg
33
+
33
34
  from wbreport.models import ReportAsset
34
35
  from wbreport.pdf.charts.pie import (
35
36
  get_pie_chart_horizontal,
@@ -43,7 +44,7 @@ from wbreport.pdf.tables.aggregated_tables import get_simple_aggregated_table
43
44
  from wbreport.pdf.tables.data_tables import get_simple_data_table
44
45
 
45
46
 
46
- def generate_report(context):
47
+ def generate_report(context): # noqa: C901
47
48
  debug = False
48
49
  ### Product Data ###
49
50
  # Main Feature table as dictionary
@@ -121,7 +122,7 @@ def generate_report(context):
121
122
  s_base_small_justified = ParagraphStyle(
122
123
  name="s_base_small_justified", parent=s_base, fontSize=6.5, leading=7, alignment=TA_JUSTIFY
123
124
  )
124
- s_base_small_justified_indent = ParagraphStyle(
125
+ s_base_small_justified_indent = ParagraphStyle( # noqa: F841
125
126
  name="s_base_small_justified_indent", parent=s_base_small_justified, leftIndent=CONTENT_OFFSET
126
127
  )
127
128
  s_base_indent = ParagraphStyle(name="s_description", parent=s_base, spaceBefore=8, leftIndent=CONTENT_OFFSET)
@@ -135,7 +136,7 @@ def generate_report(context):
135
136
  s_table_medium_leading = ParagraphStyle(name="s_table_medium_leading", parent=s_table_medium, leading=13.9)
136
137
  s_table_large = ParagraphStyle(name="s_table_large", parent=s_table_medium, fontSize=11, leading=11)
137
138
  s_table_large_center = ParagraphStyle(name="s_table_large", parent=s_table_large, alignment=TA_CENTER)
138
- s_table_large_center_padding = ParagraphStyle(
139
+ s_table_large_center_padding = ParagraphStyle( # noqa: F841
139
140
  name="s_table_large", parent=s_table_large_center, spaceBefore=20, spaceAfter=20
140
141
  )
141
142
  s_table_center = ParagraphStyle(
@@ -278,7 +279,7 @@ def generate_report(context):
278
279
  )
279
280
  return title_table
280
281
 
281
- def impress(l):
282
+ def impress(elements):
282
283
  style = s_table_headline_2
283
284
  table_data = [
284
285
  [
@@ -306,7 +307,7 @@ def generate_report(context):
306
307
  ]
307
308
  )
308
309
  )
309
- l.append(KeepTogether(TopPadder(t)))
310
+ elements.append(KeepTogether(TopPadder(t)))
310
311
 
311
312
  # Description
312
313
  elements.append(generate_title(general_data["title"]))
@@ -334,7 +335,7 @@ def generate_report(context):
334
335
  # Price Timeseries Chart
335
336
  elements.append(
336
337
  get_timeseries_chart(
337
- data=[list(zip(prices.index, prices.net_value))],
338
+ data=[list(zip(prices.index, prices.net_value, strict=False))],
338
339
  width=CONTENT_WIDTH_PAGE1_LEFT - CONTENT_OFFSET,
339
340
  height=4.34 * cm,
340
341
  color=c_product,
@@ -355,7 +356,7 @@ def generate_report(context):
355
356
  "<strong>Top 3 Contributors</strong>",
356
357
  "<strong>Bottom 3 Contributors</strong>",
357
358
  ],
358
- data=list(zip(top_3_holdings, top_3_contributors, bottom_3_contributors)),
359
+ data=list(zip(top_3_holdings, top_3_contributors, bottom_3_contributors, strict=False)),
359
360
  width=CONTENT_WIDTH_PAGE1_LEFT,
360
361
  header_row_height=0.85 * cm,
361
362
  data_row_height=0.39 * cm,
@@ -834,7 +835,7 @@ def generate_report(context):
834
835
 
835
836
  last_row_height = right_height - liquid_height - 0.85 * cm
836
837
 
837
- last_height = min(
838
+ last_height = min( # noqa: F841
838
839
  max(industry_height - liquid_height + 6, 3.564 * cm), max_available_height - liquid_height
839
840
  ) # 6 because of the drawn string
840
841
 
@@ -29,6 +29,7 @@ from reportlab.platypus import (
29
29
  from reportlab.platypus.flowables import KeepTogether, TopPadder
30
30
  from reportlab.platypus.frames import Frame
31
31
  from svglib.svglib import svg2rlg
32
+
32
33
  from wbreport.models import ReportAsset
33
34
  from wbreport.pdf.charts.pie import (
34
35
  get_pie_chart_horizontal,
@@ -44,12 +45,12 @@ from wbreport.pdf.tables.aggregated_tables import (
44
45
  from wbreport.pdf.tables.data_tables import get_simple_data_table
45
46
 
46
47
 
47
- def generate_report(context):
48
+ def generate_report(context): # noqa: C901
48
49
  debug = False
49
50
 
50
51
  main_features_dict_tmp = context["information_table"]
51
52
  main_features_dict = {}
52
- for k, v in main_features_dict_tmp.items():
53
+ for v in main_features_dict_tmp.values():
53
54
  main_features_dict.update(v)
54
55
  # Monthly returns table as dataframe, None is no value
55
56
  monthly_returns = context["monthly_returns"]
@@ -129,7 +130,7 @@ def generate_report(context):
129
130
  s_base_small_justified = ParagraphStyle(
130
131
  name="s_base_small_justified", parent=s_base, fontSize=6.5, leading=7, alignment=TA_JUSTIFY
131
132
  )
132
- s_base_small_justified_indent = ParagraphStyle(
133
+ s_base_small_justified_indent = ParagraphStyle( # noqa: F841
133
134
  name="s_base_small_justified_indent", parent=s_base_small_justified, leftIndent=CONTENT_OFFSET
134
135
  )
135
136
  s_base_indent = ParagraphStyle(name="s_description", parent=s_base, spaceBefore=8, leftIndent=CONTENT_OFFSET)
@@ -143,7 +144,7 @@ def generate_report(context):
143
144
  s_table_medium_leading = ParagraphStyle(name="s_table_medium_leading", parent=s_table_medium, leading=13.9)
144
145
  s_table_large = ParagraphStyle(name="s_table_large", parent=s_table_medium, fontSize=11, leading=11)
145
146
  s_table_large_center = ParagraphStyle(name="s_table_large", parent=s_table_large, alignment=TA_CENTER)
146
- s_table_large_center_padding = ParagraphStyle(
147
+ s_table_large_center_padding = ParagraphStyle( # noqa: F841
147
148
  name="s_table_large", parent=s_table_large_center, spaceBefore=20, spaceAfter=20
148
149
  )
149
150
  s_table_center = ParagraphStyle(
@@ -284,7 +285,7 @@ def generate_report(context):
284
285
  )
285
286
  return title_table
286
287
 
287
- def impress(l):
288
+ def impress(elements):
288
289
  style = s_table_headline_2
289
290
  table_data = [
290
291
  [
@@ -312,7 +313,7 @@ def generate_report(context):
312
313
  ]
313
314
  )
314
315
  )
315
- l.append(KeepTogether(TopPadder(t)))
316
+ elements.append(KeepTogether(TopPadder(t)))
316
317
 
317
318
  # Description
318
319
  elements.append(generate_title(general_data["title"]))
@@ -347,7 +348,7 @@ def generate_report(context):
347
348
  # Price Timeseries Chart
348
349
  elements.append(
349
350
  get_timeseries_chart(
350
- data=[list(zip(prices.index, prices.net_value))],
351
+ data=[list(zip(prices.index, prices.net_value, strict=False))],
351
352
  width=CONTENT_WIDTH_PAGE1_LEFT - CONTENT_OFFSET,
352
353
  height=4.34 * cm,
353
354
  color=c_product,
@@ -30,6 +30,7 @@ from reportlab.platypus import (
30
30
  from reportlab.platypus.flowables import KeepTogether, TopPadder
31
31
  from reportlab.platypus.frames import Frame
32
32
  from svglib.svglib import svg2rlg
33
+
33
34
  from wbreport.models import ReportAsset
34
35
  from wbreport.pdf.charts.pie import (
35
36
  get_pie_chart_horizontal,
@@ -42,7 +43,7 @@ from wbreport.pdf.tables.aggregated_tables import get_simple_aggregated_table
42
43
  from wbreport.pdf.tables.data_tables import get_simple_data_table
43
44
 
44
45
 
45
- def generate_report(context):
46
+ def generate_report(context): # noqa: C901
46
47
  debug = False
47
48
  ### Product Data ###
48
49
  # Main Feature table as dictionary
@@ -120,7 +121,7 @@ def generate_report(context):
120
121
  s_base_small_justified = ParagraphStyle(
121
122
  name="s_base_small_justified", parent=s_base, fontSize=6.5, leading=7, alignment=TA_JUSTIFY
122
123
  )
123
- s_base_small_justified_indent = ParagraphStyle(
124
+ s_base_small_justified_indent = ParagraphStyle( # noqa: F841
124
125
  name="s_base_small_justified_indent", parent=s_base_small_justified, leftIndent=CONTENT_OFFSET
125
126
  )
126
127
  s_base_indent = ParagraphStyle(name="s_description", parent=s_base, spaceBefore=8, leftIndent=CONTENT_OFFSET)
@@ -134,7 +135,7 @@ def generate_report(context):
134
135
  s_table_medium_leading = ParagraphStyle(name="s_table_medium_leading", parent=s_table_medium, leading=13.9)
135
136
  s_table_large = ParagraphStyle(name="s_table_large", parent=s_table_medium, fontSize=11, leading=11)
136
137
  s_table_large_center = ParagraphStyle(name="s_table_large", parent=s_table_large, alignment=TA_CENTER)
137
- s_table_large_center_padding = ParagraphStyle(
138
+ s_table_large_center_padding = ParagraphStyle( # noqa: F841
138
139
  name="s_table_large", parent=s_table_large_center, spaceBefore=20, spaceAfter=20
139
140
  )
140
141
  s_table_center = ParagraphStyle(
@@ -277,7 +278,7 @@ def generate_report(context):
277
278
  )
278
279
  return title_table
279
280
 
280
- def impress(l):
281
+ def impress(elements):
281
282
  style = s_table_headline_2
282
283
  table_data = [
283
284
  [
@@ -305,7 +306,7 @@ def generate_report(context):
305
306
  ]
306
307
  )
307
308
  )
308
- l.append(KeepTogether(TopPadder(t)))
309
+ elements.append(KeepTogether(TopPadder(t)))
309
310
 
310
311
  ############################
311
312
  ## Page 1: BEGINING
@@ -337,7 +338,7 @@ def generate_report(context):
337
338
  # Price Timeseries Chart
338
339
  elements.append(
339
340
  get_timeseries_chart(
340
- data=[list(zip(prices.index, prices.net_value))],
341
+ data=[list(zip(prices.index, prices.net_value, strict=False))],
341
342
  width=CONTENT_WIDTH_PAGE1_LEFT - CONTENT_OFFSET,
342
343
  height=4.34 * cm,
343
344
  color=c_product,
@@ -358,7 +359,7 @@ def generate_report(context):
358
359
  "<strong>Top 3 Contributors</strong>",
359
360
  "<strong>Bottom 3 Contributors</strong>",
360
361
  ],
361
- data=list(zip(top_3_holdings, top_3_contributors, bottom_3_contributors)),
362
+ data=list(zip(top_3_holdings, top_3_contributors, bottom_3_contributors, strict=False)),
362
363
  width=CONTENT_WIDTH_PAGE1_LEFT,
363
364
  header_row_height=0.85 * cm,
364
365
  data_row_height=0.39 * cm,
@@ -29,6 +29,7 @@ from reportlab.platypus import (
29
29
  from reportlab.platypus.flowables import KeepTogether, TopPadder
30
30
  from reportlab.platypus.frames import Frame
31
31
  from svglib.svglib import svg2rlg
32
+
32
33
  from wbreport.models import ReportAsset
33
34
  from wbreport.pdf.charts.pie import (
34
35
  get_pie_chart_horizontal,
@@ -42,7 +43,7 @@ from wbreport.pdf.tables.aggregated_tables import get_simple_aggregated_table
42
43
  from wbreport.pdf.tables.data_tables import get_simple_data_table
43
44
 
44
45
 
45
- def generate_report(context):
46
+ def generate_report(context): # noqa: C901
46
47
  debug = False
47
48
 
48
49
  main_features_dict = context["information_table"]["Main Features"]
@@ -133,7 +134,7 @@ def generate_report(context):
133
134
  s_table_medium = ParagraphStyle(name="s_table_medium", parent=s_table_base, fontSize=9, leading=8)
134
135
  s_table_medium_leading = ParagraphStyle(name="s_table_medium_leading", parent=s_table_medium, leading=13.9)
135
136
  s_table_large = ParagraphStyle(name="s_table_large", parent=s_table_medium, fontSize=11, leading=11)
136
- s_table_large_center = ParagraphStyle(name="s_table_large", parent=s_table_large, alignment=TA_CENTER)
137
+ s_table_large_center = ParagraphStyle(name="s_table_large", parent=s_table_large, alignment=TA_CENTER) # noqa: F841
137
138
  s_table_center = ParagraphStyle(
138
139
  name="s_table_center",
139
140
  parent=s_table_base,
@@ -330,7 +331,7 @@ def generate_report(context):
330
331
  # Price Timeseries Chart
331
332
  elements.append(
332
333
  get_timeseries_chart(
333
- data=[list(zip(prices.index, prices.net_value))],
334
+ data=[list(zip(prices.index, prices.net_value, strict=False))],
334
335
  width=CONTENT_WIDTH_PAGE1_LEFT - CONTENT_OFFSET,
335
336
  height=4.34 * cm,
336
337
  color=c_product,
@@ -351,7 +352,7 @@ def generate_report(context):
351
352
  "<strong>Top 3 Contributors</strong>",
352
353
  "<strong>Bottom 3 Contributors</strong>",
353
354
  ],
354
- data=list(zip(top_3_holdings, top_3_contributors, bottom_3_contributors)),
355
+ data=list(zip(top_3_holdings, top_3_contributors, bottom_3_contributors, strict=False)),
355
356
  width=CONTENT_WIDTH_PAGE1_LEFT,
356
357
  header_row_height=0.85 * cm,
357
358
  data_row_height=0.39 * cm,
@@ -37,7 +37,7 @@ def get_simple_aggregated_table(
37
37
 
38
38
  table_row.append(Paragraph(str(year), style=row_style))
39
39
 
40
- for month, element in row.items():
40
+ for _, element in row.items():
41
41
  if element.get("performance", None) is None:
42
42
  table_row.append(Spacer(width=0, height=0))
43
43
  else:
@@ -110,7 +110,7 @@ def get_fund_table(
110
110
  table_data.append(table_row)
111
111
 
112
112
  # Generate table
113
- for index, row in df.iterrows():
113
+ for _, row in df.iterrows():
114
114
  table_row = list()
115
115
 
116
116
  for value in row:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wbreport
3
- Version: 1.55.10rc0
3
+ Version: 1.56.0
4
4
  Author-email: Christopher Wittlinger <c.wittlinger@stainly.com>
5
5
  License-File: LICENSE
6
6
  Requires-Dist: wbcore
@@ -11,10 +11,10 @@ wbreport/urls.py,sha256=yoIFuuwPCRRjOM0VzMznyMmMQXbSVfdk1l12xZJ7Ecs,1463
11
11
  wbreport/urls_public.py,sha256=oc_gBiKvLqWkSDAm_0yitWgpfEnlh3_hGUugkLrLCLs,370
12
12
  wbreport/defaults/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  wbreport/defaults/factsheets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- wbreport/defaults/factsheets/base.py,sha256=i-VmUuF4cMyjROUuSkTpAU3XlakbgwYGzLfc3dbRXOY,41100
14
+ wbreport/defaults/factsheets/base.py,sha256=VYfZfGsCUWMxC1OaYv3krnPstNio8snn0I7RFRJHUJM,41114
15
15
  wbreport/defaults/factsheets/menu.py,sha256=NTcUuViV4Q-qkffoA7wMSyxnE4mWPysu3KTKWxFmMCM,4580
16
16
  wbreport/defaults/factsheets/mixins.py,sha256=E0RvxmUpvpG7B7YngBPXJ35eD3nwNandJFzLjj1rNRI,1267
17
- wbreport/defaults/factsheets/multitheme.py,sha256=n3FuICWF-m2JvWo04na5v_VoatTHFRrdTb6jzMeA88Q,38496
17
+ wbreport/defaults/factsheets/multitheme.py,sha256=WJAZ7JRiXMtRLjxUJMK2fCuauNDJP6hdqzz9NUUJnoQ,38510
18
18
  wbreport/factories/__init__.py,sha256=jyD1_R-xc2JPZIaSwtE7zYATdL9NIXIDqTwjLw1MolA,170
19
19
  wbreport/factories/data_classes.py,sha256=Ms9bqG370OQTmE3Kxvt9xay-6lfTnqEA3Sx7zCQKWXw,1487
20
20
  wbreport/factories/reports.py,sha256=nGWa_fS78XGUbS8E35rGl3IJySHLB81ggq-3JllPOx4,2286
@@ -30,22 +30,22 @@ wbreport/migrations/0014_alter_reportcategory_options_and_more.py,sha256=52ot6Ck
30
30
  wbreport/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
31
  wbreport/pdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
32
  wbreport/pdf/charts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- wbreport/pdf/charts/legend.py,sha256=D-_-ZLDF7q7KlYLiNYVXHWLs4I-LgV8Ce8lk1sLfbPU,461
34
- wbreport/pdf/charts/pie.py,sha256=fIje766qMx3pQ_m4EDO3nzrt87bLFzNKOCwJuJI4Ujs,4269
35
- wbreport/pdf/charts/timeseries.py,sha256=dN2N66qg9S3bW9OV8q-Vms3wFxUHhLMnaUnymzTNeWY,2381
33
+ wbreport/pdf/charts/legend.py,sha256=g_yAnI6zuMn11pXOphReWiKA1PPIEJ6NzKeeKLHx4t0,481
34
+ wbreport/pdf/charts/pie.py,sha256=QzsP18-s1IKXyiUT8sHi-wjivqEUKkxy42qMVaJP-fk,4288
35
+ wbreport/pdf/charts/timeseries.py,sha256=O1MCneh6hPJD6jVyJfytGL3WdYx9WaQ-vfO66lCjgUI,2395
36
36
  wbreport/pdf/flowables/risk.py,sha256=KdE5RQU0kPUqZX6mpvqITVxpLFu1uDeA2C5lrtSA0mY,3443
37
37
  wbreport/pdf/flowables/textboxes.py,sha256=BMzlva7WBD5UZ5DD1cwWV5ZPragt61YaJquikDYk7eU,4369
38
38
  wbreport/pdf/flowables/themes.py,sha256=Y5LcgSTJDhIZM3uIWAPY68HVMhTY9aY9PDwWsG5_IVk,6548
39
39
  wbreport/pdf/sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
40
  wbreport/pdf/sandbox/run.py,sha256=Vkzp_xVVJHctToS49Uef2Mnpb_5KUOWPxNdTFHOqri8,584
41
41
  wbreport/pdf/sandbox/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- wbreport/pdf/sandbox/templates/basic_factsheet.py,sha256=9vROV8WQELykmulecaSe2U5LHMP8D7eH2NXcFka8Zjw,33949
43
- wbreport/pdf/sandbox/templates/fund_factsheet.py,sha256=xaqZYoIhkXjQwkXAVLZ5TN56YqrLN0JmRvb3GFooNHQ,31036
44
- wbreport/pdf/sandbox/templates/long_industry_exposure_factsheet.py,sha256=pRCmZ0ohbbI-I-EX08YMKozBso0bo7GuvKphxGVCYwY,32666
45
- wbreport/pdf/sandbox/templates/multistrat_factsheet.py,sha256=a10jLWAa1LL-0hrQHFaB4nzOmRkL087S0NTVjRlrysQ,31463
42
+ wbreport/pdf/sandbox/templates/basic_factsheet.py,sha256=WeiH7XzxGOlcssP6gTwMb_F4MVRkjWefR4vK5CrIe5I,34048
43
+ wbreport/pdf/sandbox/templates/fund_factsheet.py,sha256=gQUfTEdUupII8ra6a5_l4Zx3IQQlP3CV9ZN2j0vaEKc,31105
44
+ wbreport/pdf/sandbox/templates/long_industry_exposure_factsheet.py,sha256=m1RrJchLV9cBcXKlJS_OdpSxmX_kgQqkkwJd0JHH8-Y,32751
45
+ wbreport/pdf/sandbox/templates/multistrat_factsheet.py,sha256=oZjgYTR_vZ96kJjwLouiejDLhslwkfcXKq7MK0T7Kfo,31520
46
46
  wbreport/pdf/sandbox/templates/testfile.pdf,sha256=eV55RNFdqxqYzre6mg8EWZoL_cbc_lwPjyTGt1pr1AI,144012
47
47
  wbreport/pdf/tables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- wbreport/pdf/tables/aggregated_tables.py,sha256=rYikFswLMcaTpW7Em5B5oE1WSItQjkW_MJJTsumRpq8,4763
48
+ wbreport/pdf/tables/aggregated_tables.py,sha256=i59WMWRsuXdyut9FTAzE7DxGq3uugjw56hs81ZWzpoE,4755
49
49
  wbreport/pdf/tables/data_tables.py,sha256=snJlyMMRz4YSR4gcXeIdQR38h-IkOQiO0A5jx5lF45o,2241
50
50
  wbreport/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
51
  wbreport/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -64,7 +64,7 @@ wbreport/viewsets/configs/displays.py,sha256=DAuGjJB2OITtgFFSBgAz0_sva0uyRAQ1jEa
64
64
  wbreport/viewsets/configs/endpoints.py,sha256=2k2aPoAo4Nq8czbYWLqz2hBbdgPAOk91GSUCt7twA_E,651
65
65
  wbreport/viewsets/configs/menus.py,sha256=trDZsdjXip8KQ4SY1uIudZWFqwb3rQHIRSU36dzRzy0,269
66
66
  wbreport/viewsets/configs/titles.py,sha256=bAfruj40yHrSUPzuJ7WGlfJDl7NXXKSaTqITPNn4eJA,783
67
- wbreport-1.55.10rc0.dist-info/METADATA,sha256=0-JXplX10eriaS22ATxNBdjvlVuXkHH6-IutYLtniPI,190
68
- wbreport-1.55.10rc0.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
69
- wbreport-1.55.10rc0.dist-info/licenses/LICENSE,sha256=jvfVH0SY8_YMHlsJHKe_OajiscQDz4lpTlqT6x24sVw,172
70
- wbreport-1.55.10rc0.dist-info/RECORD,,
67
+ wbreport-1.56.0.dist-info/METADATA,sha256=66QiXqiOBm_30dqETVTpYWjdlQ-_uSpSu4JFVDn9fhQ,186
68
+ wbreport-1.56.0.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
69
+ wbreport-1.56.0.dist-info/licenses/LICENSE,sha256=jvfVH0SY8_YMHlsJHKe_OajiscQDz4lpTlqT6x24sVw,172
70
+ wbreport-1.56.0.dist-info/RECORD,,