mkdocstrings-python 1.6.2__py3-none-any.whl → 1.6.3__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.
Files changed (21) hide show
  1. mkdocstrings_handlers/python/handler.py +8 -2
  2. mkdocstrings_handlers/python/rendering.py +5 -2
  3. mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html +1 -1
  4. mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html +1 -1
  5. mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html +1 -1
  6. mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html +1 -1
  7. mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html +1 -1
  8. mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html +1 -1
  9. mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html +1 -1
  10. mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html +1 -1
  11. mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html +1 -1
  12. mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html +1 -1
  13. mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html +1 -1
  14. mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html +1 -1
  15. mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html +1 -1
  16. mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html +1 -1
  17. mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html +1 -1
  18. {mkdocstrings_python-1.6.2.dist-info → mkdocstrings_python-1.6.3.dist-info}/METADATA +1 -1
  19. {mkdocstrings_python-1.6.2.dist-info → mkdocstrings_python-1.6.3.dist-info}/RECORD +21 -21
  20. {mkdocstrings_python-1.6.2.dist-info → mkdocstrings_python-1.6.3.dist-info}/WHEEL +0 -0
  21. {mkdocstrings_python-1.6.2.dist-info → mkdocstrings_python-1.6.3.dist-info}/licenses/LICENSE +0 -0
@@ -108,7 +108,6 @@ class PythonHandler(BaseHandler):
108
108
  "filters": ["!^_[^_]"],
109
109
  "annotations_path": "brief",
110
110
  "preload_modules": None,
111
- "load_external_modules": False,
112
111
  "allow_inspection": True,
113
112
  }
114
113
  """
@@ -189,6 +188,7 @@ class PythonHandler(BaseHandler):
189
188
  config_file_path: str | None = None,
190
189
  paths: list[str] | None = None,
191
190
  locale: str = "en",
191
+ load_external_modules: bool = False,
192
192
  **kwargs: Any,
193
193
  ) -> None:
194
194
  """Initialize the handler.
@@ -198,10 +198,12 @@ class PythonHandler(BaseHandler):
198
198
  config_file_path: The MkDocs configuration file path.
199
199
  paths: A list of paths to use as Griffe search paths.
200
200
  locale: The locale to use when rendering content.
201
+ load_external_modules: Load external modules when resolving aliases.
201
202
  **kwargs: Same thing, but with keyword arguments.
202
203
  """
203
204
  super().__init__(*args, **kwargs)
204
205
  self._config_file_path = config_file_path
206
+ self._load_external_modules = load_external_modules
205
207
  paths = paths or []
206
208
  glob_base_dir = os.path.dirname(os.path.abspath(config_file_path)) if config_file_path else "."
207
209
  with chdir(glob_base_dir):
@@ -282,7 +284,7 @@ class PythonHandler(BaseHandler):
282
284
  raise CollectionError(str(error)) from error
283
285
  unresolved, iterations = loader.resolve_aliases(
284
286
  implicit=False,
285
- external=final_config["load_external_modules"],
287
+ external=self._load_external_modules,
286
288
  )
287
289
  if unresolved:
288
290
  logger.debug(f"{len(unresolved)} aliases were still unresolved after {iterations} iterations")
@@ -372,11 +374,13 @@ class PythonHandler(BaseHandler):
372
374
 
373
375
 
374
376
  def get_handler(
377
+ *,
375
378
  theme: str,
376
379
  custom_templates: str | None = None,
377
380
  config_file_path: str | None = None,
378
381
  paths: list[str] | None = None,
379
382
  locale: str = "en",
383
+ load_external_modules: bool = False,
380
384
  **config: Any, # noqa: ARG001
381
385
  ) -> PythonHandler:
382
386
  """Simply return an instance of `PythonHandler`.
@@ -387,6 +391,7 @@ def get_handler(
387
391
  config_file_path: The MkDocs configuration file path.
388
392
  paths: A list of paths to use as Griffe search paths.
389
393
  locale: The locale to use when rendering content.
394
+ load_external_modules: Load external modules when resolving aliases.
390
395
  **config: Configuration passed to the handler.
391
396
 
392
397
  Returns:
@@ -399,4 +404,5 @@ def get_handler(
399
404
  config_file_path=config_file_path,
400
405
  paths=paths,
401
406
  locale=locale,
407
+ load_external_modules=load_external_modules,
402
408
  )
@@ -351,14 +351,17 @@ def do_filter_objects(
351
351
  @lru_cache(maxsize=1)
352
352
  def _get_black_formatter() -> Callable[[str, int], str]:
353
353
  try:
354
- from black import Mode, format_str
354
+ from black import InvalidInput, Mode, format_str
355
355
  except ModuleNotFoundError:
356
356
  logger.info("Formatting signatures requires Black to be installed.")
357
357
  return lambda text, _: text
358
358
 
359
359
  def formatter(code: str, line_length: int) -> str:
360
360
  mode = Mode(line_length=line_length)
361
- return format_str(code, mode=mode)
361
+ try:
362
+ return format_str(code, mode=mode)
363
+ except InvalidInput:
364
+ return code
362
365
 
363
366
  return formatter
364
367
 
@@ -40,7 +40,7 @@
40
40
  <ul>
41
41
  {% for attribute in section.value %}
42
42
  <li class="field-body">
43
- <b>{{ attribute.name }}</b>
43
+ <b><code>{{ attribute.name }}</code></b>
44
44
  {% if attribute.annotation %}
45
45
  {% with expression = attribute.annotation %}
46
46
  (<code>{% include "expression.html" with context %}</code>)
@@ -32,7 +32,7 @@
32
32
  <ul>
33
33
  {% for class in section.value %}
34
34
  <li class="field-body">
35
- <b>{{ class.name }}</b>
35
+ <b><code>{{ class.name }}</code></b>
36
36
  –
37
37
  <div class="doc-md-description">
38
38
  {{ class.description|convert_markdown(heading_level, html_id) }}
@@ -35,7 +35,7 @@
35
35
  {% for function in section.value %}
36
36
  {% if not function.name == "__init__" or not config.merge_init_into_class %}
37
37
  <li class="field-body">
38
- <b>{{ function.name }}</b>
38
+ <b><code>{{ function.name }}</code></b>
39
39
  –
40
40
  <div class="doc-md-description">
41
41
  {{ function.description|convert_markdown(heading_level, html_id) }}
@@ -32,7 +32,7 @@
32
32
  <ul>
33
33
  {% for module in section.value %}
34
34
  <li class="field-body">
35
- <b>{{ module.name }}</b>
35
+ <b><code>{{ module.name }}</code></b>
36
36
  –
37
37
  <div class="doc-md-description">
38
38
  {{ module.description|convert_markdown(heading_level, html_id) }}
@@ -40,7 +40,7 @@
40
40
  <ul>
41
41
  {% for parameter in section.value %}
42
42
  <li class="field-body">
43
- <b>{{ parameter.name }}</b>
43
+ <b><code>{{ parameter.name }}</code></b>
44
44
  {% if parameter.annotation %}
45
45
  {% with expression = parameter.annotation %}
46
46
  (<code>{% include "expression.html" with context %}</code>)
@@ -50,7 +50,7 @@
50
50
  <ul>
51
51
  {% for parameter in section.value %}
52
52
  <li class="field-body">
53
- <b>{{ parameter.name }}</b>
53
+ <b><code>{{ parameter.name }}</code></b>
54
54
  {% if parameter.annotation %}
55
55
  {% with expression = parameter.annotation %}
56
56
  (<code>{% include "expression.html" with context %}</code>
@@ -41,7 +41,7 @@
41
41
  <ul>
42
42
  {% for receives in section.value %}
43
43
  <li class="field-body">
44
- {% if receives.name %}<b>{{ receives.name }}</b>{% endif %}
44
+ {% if receives.name %}<b><code>{{ receives.name }}</code></b>{% endif %}
45
45
  {% if receives.annotation %}
46
46
  {% with expression = receives.annotation %}
47
47
  {% if receives.name %} ({% endif %}
@@ -41,7 +41,7 @@
41
41
  <ul>
42
42
  {% for returns in section.value %}
43
43
  <li class="field-body">
44
- {% if returns.name %}<b>{{ returns.name }}</b>{% endif %}
44
+ {% if returns.name %}<b><code>{{ returns.name }}</code></b>{% endif %}
45
45
  {% if returns.annotation %}
46
46
  {% with expression = returns.annotation %}
47
47
  {% if returns.name %} ({% endif %}
@@ -41,7 +41,7 @@
41
41
  <ul>
42
42
  {% for yields in section.value %}
43
43
  <li class="field-body">
44
- {% if yields.name %}<b>{{ yields.name }}</b>{% endif %}
44
+ {% if yields.name %}<b><code>{{ yields.name }}</code></b>{% endif %}
45
45
  {% if yields.annotation %}
46
46
  {% with expression = yields.annotation %}
47
47
  {% if yields.name %} ({% endif %}
@@ -14,7 +14,7 @@
14
14
  <ul class="first simple">
15
15
  {% for attribute in section.value %}
16
16
  <li>
17
- <b>{{ attribute.name }}</b>
17
+ <b><code>{{ attribute.name }}</code></b>
18
18
  {% if attribute.annotation %}
19
19
  {% with expression = attribute.annotation %}
20
20
  (<code>{% include "expression.html" with context %}</code>)
@@ -14,7 +14,7 @@
14
14
  <ul class="first simple">
15
15
  {% for parameter in section.value %}
16
16
  <li>
17
- <b>{{ parameter.name }}</b>
17
+ <b><code>{{ parameter.name }}</code></b>
18
18
  {% if parameter.annotation %}
19
19
  {% with expression = parameter.annotation %}
20
20
  (<code>{% include "expression.html" with context %}</code>)
@@ -14,7 +14,7 @@
14
14
  <ul class="first simple">
15
15
  {% for parameter in section.value %}
16
16
  <li>
17
- <b>{{ parameter.name }}</b>
17
+ <b><code>{{ parameter.name }}</code></b>
18
18
  {% if parameter.annotation %}
19
19
  {% with expression = parameter.annotation %}
20
20
  (<code>{% include "expression.html" with context %}</code>
@@ -14,7 +14,7 @@
14
14
  <ul class="first simple">
15
15
  {% for receives in section.value %}
16
16
  <li>
17
- {% if receives.name %}<b>{{ receives.name }}</b>{% endif %}
17
+ {% if receives.name %}<b><code>{{ receives.name }}</code></b>{% endif %}
18
18
  {% if receives.annotation %}
19
19
  {% with expression = receives.annotation %}
20
20
  {% if receives.name %}({% endif %}
@@ -14,7 +14,7 @@
14
14
  <ul class="first simple">
15
15
  {% for returns in section.value %}
16
16
  <li>
17
- {% if returns.name %}<b>{{ returns.name }}</b>{% endif %}
17
+ {% if returns.name %}<b><code>{{ returns.name }}</code></b>{% endif %}
18
18
  {% if returns.annotation %}
19
19
  {% with expression = returns.annotation %}
20
20
  {% if returns.name %}({% endif %}
@@ -14,7 +14,7 @@
14
14
  <ul class="first simple">
15
15
  {% for yields in section.value %}
16
16
  <li>
17
- {% if yields.name %}<b>{{ yields.name }}</b>{% endif %}
17
+ {% if yields.name %}<b></code>{{ yields.name }}</code></b>{% endif %}
18
18
  {% if yields.annotation %}
19
19
  {% with expression = yields.annotation %}
20
20
  {% if yields.name %}({% endif %}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mkdocstrings-python
3
- Version: 1.6.2
3
+ Version: 1.6.3
4
4
  Summary: A Python handler for mkdocstrings.
5
5
  Author-Email: Timothée Mazzucotelli <pawamoy@pm.me>
6
6
  License: ISC
@@ -1,24 +1,24 @@
1
1
  mkdocstrings_handlers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  mkdocstrings_handlers/python/__init__.py,sha256=CJT3hmg9HpEMy5dbq2jL3Y8unO6UOHND7yCLojwQrS8,326
3
- mkdocstrings_handlers/python/handler.py,sha256=jPvs61494rIBvpKWNVzJx5EM_AwCed1zTFdDqvpyEIw,19866
4
- mkdocstrings_handlers/python/rendering.py,sha256=JrV5NSwegXdMVZaFyLql3400EpKdQlylFv6NYwfvccs,11467
3
+ mkdocstrings_handlers/python/handler.py,sha256=DBYtXwFGSDUkfllF4j07LsBzha-w1fmflXs7bIKMcLA,20180
4
+ mkdocstrings_handlers/python/rendering.py,sha256=pBpsM_zxGGlp-xmCNZRcOOkQppyQFPev5b1exmtJSW0,11551
5
5
  mkdocstrings_handlers/python/templates/material/_base/attribute.html,sha256=1nLfAEyZiD3DF9R7nyEb69cIM5oFp1MA-Zl7SJwuVts,2539
6
6
  mkdocstrings_handlers/python/templates/material/_base/children.html,sha256=8z5dQ2HOywV7CQ3KYYgdBX8N-CGbnYZ8Sm7ugN89IIo,5709
7
7
  mkdocstrings_handlers/python/templates/material/_base/class.html,sha256=OQATi6Zz0Vg34ONWwh6mimGdeHd2s0VqxulyrLMMzq8,4479
8
8
  mkdocstrings_handlers/python/templates/material/_base/docstring.html,sha256=Sw8TwJy4aTZA2phqqg61QVAZDfLYJAzgE_lQmDcdUsU,2163
9
9
  mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html,sha256=wiD2FtMnGrFMZJDilURnNqzIu8bOR0zcMErUVUqbDPo,274
10
- mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html,sha256=bP30_K01q1Gv01MQtNZj64xDsWtbx5pe0rbgrU3v0EY,2827
11
- mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html,sha256=g40XWtu_oamj8P8MZH60CkjgQ4H1d_9-GLecgrSQ7dg,1882
10
+ mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html,sha256=hpGB3CKuD44C4utJxKfA4V-uqQCVnV4fVRkjwGMrcdU,2840
11
+ mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html,sha256=gMGsXcfNAF5k760HZcs5Y9_5klqC4USUfzOjulsyb0A,1895
12
12
  mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html,sha256=1VqrMMFMr45RPkBjK0X7VL9PHGl-kDg2IJL2xODSg0o,460
13
- mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html,sha256=mA0cpZ10HRRSJxzXljT83fEkDbt3vlVTETj7y41PF4Y,2396
14
- mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html,sha256=0pxH2aobXTPdwXuQSbczXXD87Zlw1cLpS873b2Rip5o,1893
15
- mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html,sha256=RlhZVV70GGvQdqiqgjK0PiX0zWovH5pR34mpqEAgK0M,2853
16
- mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html,sha256=GgHlAbkxUexlzs7ZNxot2OK_kLnUpnqau2Bn5Pf4gwg,3810
13
+ mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html,sha256=4uqe8A6yWv8RPk_0tpYJApb-JfniEC0ZwTeSDFe-aPo,2409
14
+ mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html,sha256=u098YP1CJ0aeLFbOZh76BDW-iFVUsMrNJ9yR5GooH_A,1906
15
+ mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html,sha256=sB6CnpjXe6vRWyzjAf-Z0f7pZKlMsBttEBuQfxx8q4c,2866
16
+ mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html,sha256=34Xkxn5K2FXw2U72Irwudi27vK_DnzOVQoBNpi_W6cU,3823
17
17
  mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html,sha256=wQKL0aGo8iSjaUJdUT_BWFjjqc9SDC-Qe4yByfHWIa0,2478
18
- mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html,sha256=dxxt5FYMzIbgNoDT48YUnpBO5WzRO47_fKlDDm2E6uU,3490
19
- mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html,sha256=6EBMBm4T4Yt2HATBQIGXAd4NKQwSGLJJz988tm7LpWI,3466
18
+ mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html,sha256=OVVXLKy-hSOto720TKGmmVPh-gcLNwR-w34LvDm1Brs,3503
19
+ mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html,sha256=GACKAuJKUjAu3mUts_GJnQ31VZt04wxznMQNdHbDeAI,3479
20
20
  mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html,sha256=FROLXo9Xd97TlpokL0YZC1kZ08QRL5bIm8_QnFtrBNQ,2453
21
- mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html,sha256=XpgWIrC_dU7X-GPL6X7hIldaZiiW2PD-wrZ6V295F48,3431
21
+ mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html,sha256=3aBn3F8wO6ptxWQzMHyykrX8r4_rn2ezfhE7IZUO1Uw,3444
22
22
  mkdocstrings_handlers/python/templates/material/_base/expression.html,sha256=lfvgET2b8dxvqYZJqiGjS-ooO_nNXqV42zsL8yL05_s,1845
23
23
  mkdocstrings_handlers/python/templates/material/_base/function.html,sha256=7f_RhIvsWa9KNDrg5Dgj8XX0_ltAv629EybAX-yQ2p0,2787
24
24
  mkdocstrings_handlers/python/templates/material/_base/labels.html,sha256=QMO1lrs1smktTGvkDZabvJZFQpMp_nSoM8JBt-tAcu8,250
@@ -54,20 +54,20 @@ mkdocstrings_handlers/python/templates/material/languages/zh.html,sha256=1yUDcpU
54
54
  mkdocstrings_handlers/python/templates/material/module.html,sha256=GKdbkIxQoObcjxZP6PRLpLOYXMVFS4gSN-nxolEeDjw,34
55
55
  mkdocstrings_handlers/python/templates/material/signature.html,sha256=u9zdNsM5Lqh0ROOcThzsjHeHPJCMixy3XfzjypwyGLM,37
56
56
  mkdocstrings_handlers/python/templates/material/style.css,sha256=_lHEDcsuVAuEGhLjrMSpdH5-lxZTeVOe-K-ZDmYlVOk,999
57
- mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html,sha256=c5-gLJIUf2HHLhaMD6c1jmCuMhbqxIPOOw2Htno8B8k,988
58
- mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html,sha256=2_7dEL9xxyjSNN2riNQPIwwruY2lOLLUCxEvQ4ZX3wg,994
59
- mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html,sha256=FtG6R64dB3F21Ui8uOtxCJYM2Imsll4IgSRvcCNK49Q,1266
57
+ mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html,sha256=Bx3UUWdjKQIZi_LOr6Cry5-77E0mbme_gboJTLUPI6g,1001
58
+ mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html,sha256=gyNlRfgj4Gp06kVxf1iXXHzUQQrbBQpGtWVjUz99038,1007
59
+ mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html,sha256=Xz3USHwc-KoxN9Wig43gMs4icxJp933NyHYEYlISYW4,1279
60
60
  mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html,sha256=0G60QbAAhq7Pkv8qK7rXFigHQlSlfsswao3T9BLzofU,928
61
- mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html,sha256=0O93TnlEG30_iYfi6A4nB_K5nS1lGaCqSw4_O01PAsc,1118
62
- mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html,sha256=ssC5RR8K2tIc-B-fcGzVpfqePHeZJ25bmLLj6pndlSM,1067
61
+ mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html,sha256=Nr4nppTugLm66MQ7K4xdcuk1ivsDtre3tuDAJsw6QP8,1131
62
+ mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html,sha256=96E9kb1PAuaPXMWj-_OsUoZtsV8uxIIeVO_6EAn9eK8,1080
63
63
  mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html,sha256=r5nv78e78OdN5j9DAX-WCeUr6FAPEurt7IKHjwq1zOo,923
64
- mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html,sha256=BAp8pYytRWu2GVCibjMDtuEN8Rv02lDd2e4-NV7ruBY,1100
64
+ mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html,sha256=Qx7Nj2D9ElQ28fxtBXqmUkjLggZp7zMgniSlJ2guBG4,1114
65
65
  mkdocstrings_handlers/python/templates/readthedocs/language.html,sha256=ntV-16zf2S3h9EmKCVsD9Ny9yM5cFKXh5_h47LuA07U,431
66
66
  mkdocstrings_handlers/python/templates/readthedocs/languages/en.html,sha256=bhfjbEhYdKeUCq4O3-XwX19jvTAF8u0vr_VU62ahN4g,356
67
67
  mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html,sha256=ULdcRwrN9rF8shxFVwEZ1jqSICebVKMi8cYHpNZypd8,372
68
68
  mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html,sha256=ZYm9N33cRC4Z66-ZqmteWDfRNfo8hKe25Bz4ijVk22A,359
69
69
  mkdocstrings_handlers/python/templates/readthedocs/style.css,sha256=Ds8vF1rSxc2B0c4P10osx4cqXHWMntcSCxmRfX-nfzw,971
70
- mkdocstrings_python-1.6.2.dist-info/METADATA,sha256=YfmINB_E2q6u8d072asiwDmaIwEOp3CAjrVFb0IbVeA,5748
71
- mkdocstrings_python-1.6.2.dist-info/WHEEL,sha256=1D4d-_ODszlK6-qFybc5BLF-ZhZvee-uKVh2hLa3IIc,90
72
- mkdocstrings_python-1.6.2.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
73
- mkdocstrings_python-1.6.2.dist-info/RECORD,,
70
+ mkdocstrings_python-1.6.3.dist-info/METADATA,sha256=z0xXCzKJz7OiEMLn7m7S7wD_p90XMZrn6OUoOoZdXjQ,5748
71
+ mkdocstrings_python-1.6.3.dist-info/WHEEL,sha256=1D4d-_ODszlK6-qFybc5BLF-ZhZvee-uKVh2hLa3IIc,90
72
+ mkdocstrings_python-1.6.3.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
73
+ mkdocstrings_python-1.6.3.dist-info/RECORD,,