From c15cadf0ab17460abd75a35e40b9737b3d9d386c Mon Sep 17 00:00:00 2001 From: Felipe Allegretti Date: Thu, 24 Oct 2024 08:20:58 +0200 Subject: [PATCH] fix: ruff --- app/utils/xpath.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/utils/xpath.py b/app/utils/xpath.py index 1fc5a77..6adde93 100644 --- a/app/utils/xpath.py +++ b/app/utils/xpath.py @@ -71,7 +71,10 @@ class MarketValue: RANKINGS_POSITIONS = "//span[contains(@class, 'quick-fact__content--large')]//text()" class Transfers: - YOUTH_CLUBS = "//div[@class='box tm-player-additional-data'][descendant::*[contains(text(), 'Youth')]]//div[@class='content']//text()" + YOUTH_CLUBS = ( + "//div[@class='box tm-player-additional-data'][descendant::*[contains(text(), 'Youth')]]" + "//div[@class='content']//text()" + ) class Stats: ROWS = "//table[@class='items']//tbody//tr"