Fix or workaround PEP8 warnings

This commit is contained in:
Olly Betts 2015-06-30 01:36:07 +12:00
commit 6528e380cb

View file

@ -5,17 +5,19 @@
struct TYPE {
%pythoncode %{
def one():
def one():
a = 1
# Comment XXXX
return 1
return a
%}
};
%define %bar
%pythoncode %{
def one():
# Comment XXXX
return 1
def one():
a = 1
#
return a
%}
%enddef