Skip to content

Commit 35993a2

Browse files
committed
typing
1 parent 69d7688 commit 35993a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

awswrangler/opensearch/_write.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -608,10 +608,10 @@ def index_documents(
608608
try:
609609
if progressbar:
610610
widgets = [
611-
progressbar.Percentage(),
612-
progressbar.SimpleProgress(format=" (%(value_s)s/%(max_value_s)s)"),
613-
progressbar.Bar(),
614-
progressbar.Timer(),
611+
progressbar.Percentage(), # type: ignore[no-untyped-call]
612+
progressbar.SimpleProgress(format=" (%(value_s)s/%(max_value_s)s)"), # type: ignore[no-untyped-call]
613+
progressbar.Bar(), # type: ignore[no-untyped-call]
614+
progressbar.Timer(), # type: ignore[no-untyped-call]
615615
]
616616
progress_bar = progressbar.ProgressBar(
617617
widgets=widgets, max_value=total_documents, prefix="Indexing: "

0 commit comments

Comments
 (0)