I have the following namedtuple
:
from collections import namedtuple
Product = namedtuple(
'Product',
'product_symbol entity unique_id as_of_date company_name followers linkedin_employees linkedin industry date_added date_updated description website sector product_industry'
)
What is the best way to declare it, so it does not exceeds the Python line limit of 80 characters?