Skip to content

Commit 740e9c4

Browse files
committed
style fix
1 parent 1522d02 commit 740e9c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ abstract static class StartsWithNode extends PythonBuiltinNode {
479479

480480
@Specialization
481481
boolean startswith(PByteArray self, PTuple prefixes, @SuppressWarnings("unused") PNone start, @SuppressWarnings("unused") PNone end,
482-
@Cached("create()") BytesNodes.FindNode findNode) {
482+
@Cached("create()") BytesNodes.FindNode findNode) {
483483
for (Object arrayObj : prefixes.getArray()) {
484484
PIBytesLike array = (PIBytesLike) arrayObj;
485485
if (startswith(self, array, start, end, findNode)) {

0 commit comments

Comments
 (0)