74 characters instead of 80 for examples, as it seems that desktop version display less characters than tablet on rtd theme.
This commit is contained in:
@ -61,8 +61,10 @@ def display(row):
|
||||
None, (
|
||||
' '.join(
|
||||
filter(
|
||||
None,
|
||||
(row.get('postal_code', None), row.get('city', None))
|
||||
None, (
|
||||
row.get('postal_code', None),
|
||||
row.get('city', None)
|
||||
)
|
||||
)
|
||||
), row.get('county', None), row.get('country'),
|
||||
)
|
||||
@ -82,8 +84,9 @@ def display(row):
|
||||
format(Fore.BLUE, Style.RESET_ALL, **row)
|
||||
)
|
||||
print(
|
||||
' - {}source{}: {source}'.
|
||||
format(Fore.BLUE, Style.RESET_ALL, source='datanova/' + API_DATASET)
|
||||
' - {}source{}: {source}'.format(
|
||||
Fore.BLUE, Style.RESET_ALL, source='datanova/' + API_DATASET
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user