chore: change indent

This commit is contained in:
2022-06-24 21:00:00 +01:00
parent 34d6980cac
commit 3108ab1c1f
3 changed files with 18 additions and 200 deletions

View File

@@ -68,7 +68,7 @@ response
- Extract data using xpath:
```
countries = response.xpath("//table[contains(@class, 'sortable') and contains(@class, 'wikitable')]/tbody/tr[not(contains(@style, 'background'))]/td[1 and contains(@style, 'vertical-align:top;')]/b/a/@href")
countries = response.xpath("//table[contains(@class, 'sortable') and contains(@class, 'wikitable')]/tbody/tr[not(contains(@style, 'background'))]/td[1 and contains(@style, 'vertical-align:top;')]/b/a/@href").getall()
countries[0]
```