Skip to content
Snippets Groups Projects
Commit 5b7cc3a2 authored by ulif's avatar ulif
Browse files

flake8.

parent e0f9d19f
No related branches found
No related tags found
No related merge requests found
......@@ -20,9 +20,9 @@ direct API calls.
"""
try:
import configparser # Python 3.x
except ImportError: # pragma: no cover
import ConfigParser as configparser # Python 2.x
import configparser # Python 3.x
except ImportError: # pragma: no cover
import ConfigParser as configparser # Python 2.x
OPTIONS_DEFAULTS = dict(
......@@ -33,3 +33,7 @@ OPTIONS_DEFAULTS = dict(
randomsource="system",
wordlist="en_8k",
)
class DicewareConfigParser(configparser.SafeConfigParser):
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment