types-boto3-quicksight 1.35.71__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.
@@ -85,7 +85,7 @@ Usage::
85
85
  search_topics_paginator: SearchTopicsPaginator = client.get_paginator("search_topics")
86
86
  ```
87
87
 
88
- Copyright 2024 Vlad Emelianov
88
+ Copyright 2025 Vlad Emelianov
89
89
  """
90
90
 
91
91
  from .client import QuickSightClient
@@ -85,7 +85,7 @@ Usage::
85
85
  search_topics_paginator: SearchTopicsPaginator = client.get_paginator("search_topics")
86
86
  ```
87
87
 
88
- Copyright 2024 Vlad Emelianov
88
+ Copyright 2025 Vlad Emelianov
89
89
  """
90
90
 
91
91
  from .client import QuickSightClient
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
7
  import sys
@@ -11,14 +11,14 @@ def print_info() -> None:
11
11
  """
12
12
  Print package info to stdout.
13
13
  """
14
- print(
15
- "Type annotations for boto3 QuickSight 1.35.71\n"
16
- "Version: 1.35.71\n"
17
- "Builder version: 8.4.1\n"
14
+ sys.stdout.write(
15
+ "Type annotations for boto3 QuickSight 1.35.93\n"
16
+ "Version: 1.35.93\n"
17
+ "Builder version: 8.8.0\n"
18
18
  "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_quicksight//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight.html#quicksight\n"
20
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
21
- "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
22
22
  )
23
23
 
24
24
 
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- print("1.35.71")
29
+ sys.stdout.write("1.35.93\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -34,7 +34,8 @@ def main() -> None:
34
34
  Main CLI entrypoint.
35
35
  """
36
36
  if "--version" in sys.argv:
37
- return print_version()
37
+ print_version()
38
+ return
38
39
  print_info()
39
40
 
40
41