We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2714c commit e558cd3Copy full SHA for e558cd3
code_counter/conf/config.py
@@ -1,5 +1,5 @@
1
#!/usr/bin/env python3
2
-# coding:utf8
+# -*- coding: utf-8 -*-
3
4
import json
5
import pkg_resources
@@ -25,9 +25,9 @@ class Config(metaclass=SingletonMeta):
25
def __init__(self):
26
conf = self.__load()
27
28
- self.suffix: set = set(conf['suffix'])
29
- self.comment: set = set(conf['comment'])
30
- self.ignore: set = set(conf['ignore'])
+ self.suffix = set(conf['suffix'])
+ self.comment = set(conf['comment'])
+ self.ignore = set(conf['ignore'])
31
32
def invoke(self, args):
33
if args.restore:
0 commit comments