Skip to content

Commit d691fdd

Browse files
committed
style fix
1 parent a5ae660 commit d691fdd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/lib/PySequenceSizeNode.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,14 @@ static int doPHashingCollection(Node inliningTarget, PHashingCollection object,
111111
@Exclusive @Cached PRaiseNode.Lazy raise) {
112112
throw raise.get(inliningTarget).raise(TypeError, ErrorMessages.IS_NOT_A_SEQUENCE, object);
113113
}
114+
114115
@Specialization(guards = "cannotBeOverridden(object, inliningTarget, getClassNode)")
115116
static int doSet(Node inliningTarget, PBaseSet object,
116-
@Shared("getClass") @SuppressWarnings("unused") @Cached GetPythonObjectClassNode getClassNode,
117-
@Cached HashingStorageNodes.HashingStorageLen lenNode) {
117+
@Shared("getClass") @SuppressWarnings("unused") @Cached GetPythonObjectClassNode getClassNode,
118+
@Cached HashingStorageNodes.HashingStorageLen lenNode) {
118119
return lenNode.execute(inliningTarget, object.getDictStorage());
119120
}
121+
120122
@Specialization(guards = "cannotBeOverridden(object, inliningTarget, getClassNode)")
121123
@InliningCutoff
122124
static int doPString(Node inliningTarget, PString object,

0 commit comments

Comments
 (0)