Sujet : Re: name of the package (or style) (Posting On Python-List Prohibited)
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.lang.python comp.lang.lispDate : 22. Aug 2024, 02:01:32
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <va5v4s$21r6$2@dont-email.me>
References : 1 2 3
User-Agent : Pan/0.159 (Vovchansk; )
On Wed, 21 Aug 2024 13:25:20 -0700, HenHanna wrote:
On 8/21/2024 12:20 AM, Lawrence D'Oliveiro wrote:
>
odf.text.Span
(
text ="$%s" % format_common.my_format_amount(job_charge)
),
)
i think this look better like this:
> odf.text.Span
> ( text ="$%s" % format_common.my_format_amount(job_charge) ), )
OR just one line.
Except that call was inside a construct that was already indented four
steps deep. So it was wrapped to reduce the line length.