83f45e7f60
Standardizes shebang and coding declarations. Coding matches what's used by install tools such as pip(x). Removes a few init files that were not needed.
10 lines
192 B
Python
10 lines
192 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import configparser
|
|
|
|
|
|
class SiteAuthenticator:
|
|
def __init__(self, cfg: configparser.ConfigParser):
|
|
self.imgur_authentication = None
|