From 7f00f714b6d7c28f1c6cb8a3998167163c8ed75b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20B=C3=B6ck?= <990588+hannob@users.noreply.github.com> Date: Thu, 13 Nov 2025 15:48:32 +0100 Subject: [PATCH] Fix codingstyle with black The CI tests expect the code to be formatted with the "black" tool, this should fix the CI check. --- drafthorse/models/trade.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drafthorse/models/trade.py b/drafthorse/models/trade.py index 8afa7f9..2482b0a 100644 --- a/drafthorse/models/trade.py +++ b/drafthorse/models/trade.py @@ -196,7 +196,9 @@ class TradeSettlement(Element): invoice_currency: TaxApplicableTradeCurrencyExchange = Field( TaxApplicableTradeCurrencyExchange, profile=EXTENDED ) - payment_means: Container = MultiField(PaymentMeans, required=False, profile=EXTENDED) + payment_means: Container = MultiField( + PaymentMeans, required=False, profile=EXTENDED + ) trade_tax: Container = MultiField(ApplicableTradeTax) period: BillingSpecifiedPeriod = Field( BillingSpecifiedPeriod, required=False, profile=BASIC