Skip to content

Commit a162f3b

Browse files
committed
remove now unneccessary import
1 parent 4b3a349 commit a162f3b

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/zipimporter/ZipImporterBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ public PCode doit(PZipImporter self, String fullname,
284284
if (canNotFind.profile(md == null)) {
285285
throw raise(PythonErrorType.ZipImportError, " can't find module '%s'", fullname);
286286
}
287-
PCode code = (PCode) compileNode.execute(md.code, md.path, "exec", 0, false, -1);
287+
PCode code = compileNode.execute(md.code, md.path, "exec", 0, false, -1);
288288
return code;
289289
}
290290

0 commit comments

Comments
 (0)