Skip to content

Commit 44d9701

Browse files
committed
fix style
1 parent deee951 commit 44d9701

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/bytes

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/bytes/BytesBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ int find(VirtualFrame frame, PIBytesLike self, Object sub, int start, @SuppressW
707707
}
708708

709709
@Specialization
710-
int find (VirtualFrame frame, PIBytesLike self, Object sub, Object start, @SuppressWarnings("unused") PNone end,
710+
int find(VirtualFrame frame, PIBytesLike self, Object sub, Object start, @SuppressWarnings("unused") PNone end,
711711
@Shared("lenNode") @Cached SequenceStorageNodes.LenNode lenNode,
712712
@Shared("findNode") @Cached BytesNodes.FindNode findNode) {
713713
return find(frame, self, sub, start, lenNode.execute(self.getSequenceStorage()), findNode);

0 commit comments

Comments
 (0)