#!/usr/local/cpython-3.6/bin/python3

"""Try a namedtuple with pylint, see of 1.8.1 can deal with them."""

import collections

def main():
    """Try a namedtuple with pylint, see of 1.8.1 can deal with them."""
    test = collections.namedtuple('test', 'a b c')
    print('hi')
    test.a = 1
    test.b = 2
    test.c = 3
    print(test.d)


main()