We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d7688 commit 35993a2Copy full SHA for 35993a2
awswrangler/opensearch/_write.py
@@ -608,10 +608,10 @@ def index_documents(
608
try:
609
if progressbar:
610
widgets = [
611
- progressbar.Percentage(),
612
- progressbar.SimpleProgress(format=" (%(value_s)s/%(max_value_s)s)"),
613
- progressbar.Bar(),
614
- progressbar.Timer(),
+ progressbar.Percentage(), # type: ignore[no-untyped-call]
+ progressbar.SimpleProgress(format=" (%(value_s)s/%(max_value_s)s)"), # type: ignore[no-untyped-call]
+ progressbar.Bar(), # type: ignore[no-untyped-call]
+ progressbar.Timer(), # type: ignore[no-untyped-call]
615
]
616
progress_bar = progressbar.ProgressBar(
617
widgets=widgets, max_value=total_documents, prefix="Indexing: "
0 commit comments