We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06525a6 commit 6fbb6f9Copy full SHA for 6fbb6f9
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/dict/DictBuiltins.java
@@ -90,7 +90,7 @@ private HashingStorageNodes.InitNode getInitNode() {
90
}
91
92
@Specialization(guards = "args.length == 1")
93
- public Object doVarargs(PDict self, Object[] args, @SuppressWarnings("unused") PKeyword[] kwargs) {
+ public Object doVarargs(PDict self, Object[] args, PKeyword[] kwargs) {
94
getInitNode().execute(self, args[0], kwargs);
95
return PNone.NONE;
96
0 commit comments