Remove utf-8 coding
One-sentence description
Some files contain the line # -*- coding: utf-8 -*-
, but this is not needed
Why?
In Python 3 the default encoding of source files is utf-8, and editors will auto detect the encoding.
Current implementation
Some files contain the line # -*- coding: utf-8 -*-
Suggested implementation
Remove all # -*- coding: utf-8 -*-
lines