There was an error while loading. Please reload this page.
1 parent 5907454 commit bb5e1acCopy full SHA for bb5e1ac
1 file changed
CloudFlare/read_configs.py
@@ -3,9 +3,11 @@
3
import os
4
import re
5
try:
6
- import configparser # py3
+ # py3
7
+ import configparser
8
except ImportError:
- import ConfigParser as configparser # py2
9
+ # py2
10
+ import ConfigParser as configparser # type: ignore
11
12
class ReadConfigError(Exception):
13
""" errors for read_configs"""
0 commit comments