style: Remove unnecessary explicit argument passing.

It passes kwargs anyway, and it's not used.
This commit is contained in:
Emilio Cobos Álvarez 2017-11-15 23:55:47 +01:00
parent 9863d51451
commit 24c4afa8d3
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -680,10 +680,9 @@
% endif
</%def>
<%def name="shorthand(name, sub_properties, experimental=False, derive_serialize=False, **kwargs)">
<%def name="shorthand(name, sub_properties, derive_serialize=False, **kwargs)">
<%
shorthand = data.declare_shorthand(name, sub_properties.split(), experimental=experimental,
**kwargs)
shorthand = data.declare_shorthand(name, sub_properties.split(), **kwargs)
%>
% if shorthand:
/// ${shorthand.spec}