Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/reference/models/blocks/blocks.html
Original file line number Diff line number Diff line change
Expand Up @@ -1601,7 +1601,7 @@ <h3>Inherited members</h3>
else:
field_objects.append(PlainTextObject(**d)) # type: ignore[arg-type]
else:
self.logger.warning(f&#34;Unsupported filed detected and skipped {f}&#34;)
self.logger.warning(f&#34;Unsupported field detected and skipped {f}&#34;)
self.fields = field_objects
self.accessory = BlockElement.parse(accessory) # type: ignore[arg-type]
self.expand = expand
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/models/blocks/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6592,7 +6592,7 @@ <h3>Inherited members</h3>
else:
field_objects.append(PlainTextObject(**d)) # type: ignore[arg-type]
else:
self.logger.warning(f&#34;Unsupported filed detected and skipped {f}&#34;)
self.logger.warning(f&#34;Unsupported field detected and skipped {f}&#34;)
self.fields = field_objects
self.accessory = BlockElement.parse(accessory) # type: ignore[arg-type]
self.expand = expand
Expand Down
2 changes: 1 addition & 1 deletion slack_sdk/models/blocks/blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def __init__(
else:
field_objects.append(PlainTextObject(**d)) # type: ignore[arg-type]
else:
self.logger.warning(f"Unsupported filed detected and skipped {f}")
self.logger.warning(f"Unsupported field detected and skipped: {f}")
self.fields = field_objects
self.accessory = BlockElement.parse(accessory) # type: ignore[arg-type]
self.expand = expand
Expand Down
Loading