Skip to content

Commit 3196487

Browse files
committed
Add missing semicolon
1 parent 3984bd3 commit 3196487

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

specs/_features/eip7594/p2p-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def verify_data_column_sidecar(sidecar: DataColumnSidecar) -> bool:
7373
Verify if the data column sidecar is valid.
7474
"""
7575
# The sidecar index must be within the valid range
76-
if sidecar.index >= NUMBER_OF_COLUMNS
76+
if sidecar.index >= NUMBER_OF_COLUMNS:
7777
return False
7878

7979
# A sidecar for zero blobs is invalid

0 commit comments

Comments
 (0)