mypy-boto3-connectcases 1.35.0__py3-none-any.whl → 1.35.93__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.
@@ -18,6 +18,8 @@ Usage::
18
18
  search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
19
19
  search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
20
20
  ```
21
+
22
+ Copyright 2025 Vlad Emelianov
21
23
  """
22
24
 
23
25
  from .client import ConnectCasesClient
@@ -25,4 +27,5 @@ from .paginator import SearchCasesPaginator, SearchRelatedItemsPaginator
25
27
 
26
28
  Client = ConnectCasesClient
27
29
 
30
+
28
31
  __all__ = ("Client", "ConnectCasesClient", "SearchCasesPaginator", "SearchRelatedItemsPaginator")
@@ -18,6 +18,8 @@ Usage::
18
18
  search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
19
19
  search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
20
20
  ```
21
+
22
+ Copyright 2025 Vlad Emelianov
21
23
  """
22
24
 
23
25
  from .client import ConnectCasesClient
@@ -1,5 +1,7 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
+
4
+ Copyright 2025 Vlad Emelianov
3
5
  """
4
6
 
5
7
  import sys
@@ -9,14 +11,14 @@ def print_info() -> None:
9
11
  """
10
12
  Print package info to stdout.
11
13
  """
12
- print(
13
- "Type annotations for boto3.ConnectCases 1.35.0\n"
14
- "Version: 1.35.0\n"
15
- "Builder version: 7.26.0\n"
14
+ sys.stdout.write(
15
+ "Type annotations for boto3 ConnectCases 1.35.93\n"
16
+ "Version: 1.35.93\n"
17
+ "Builder version: 8.8.0\n"
16
18
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases//\n"
17
- "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#connectcases\n"
18
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
19
- "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
20
22
  )
21
23
 
22
24
 
@@ -24,7 +26,7 @@ def print_version() -> None:
24
26
  """
25
27
  Print package version to stdout.
26
28
  """
27
- print("1.35.0")
29
+ sys.stdout.write("1.35.93\n")
28
30
 
29
31
 
30
32
  def main() -> None:
@@ -32,7 +34,8 @@ def main() -> None:
32
34
  Main CLI entrypoint.
33
35
  """
34
36
  if "--version" in sys.argv:
35
- return print_version()
37
+ print_version()
38
+ return
36
39
  print_info()
37
40
 
38
41