Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Oct 1, 2024
1 parent 0864236 commit d23c59e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
public class PyCreateClass extends AbstractPyCreateClassOrMethodOrField {

private final static String baseClassStr = "" +
"class %s(${object}):\n" +
"class %s:\n" +
" ${pass}${cursor}\n" +
"\n" +
"\n" +
"";

private final static String baseClassWithInitStr = "" +
"class %s(${object}):\n" +
"class %s:\n" +
" \n"
+
" def __init__(self, %s):\n" +
Expand Down

0 comments on commit d23c59e

Please sign in to comment.