We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bb0601 commit 1901636Copy full SHA for 1901636
.coveragerc
@@ -2,8 +2,6 @@
2
omit =
3
*__init__.py
4
scrapd/cli/*
5
- scrapd/config.py
6
- scrapd/core/constant.py
7
scrapd/core/version.py
8
scrapd/main.py
9
scrapd/tests/*
scrapd/core/constant.py
@@ -1,16 +1,7 @@
1
"""Define the scrapd constants."""
-from abc import ABC
-class Constant(ABC):
- """Define the constant class."""
-
- def __setattr__(self, *_):
- """Ensure the attributes are read only.."""
10
- raise AttributeError('This attribute is read only.')
11
12
13
-class Fields(Constant):
+class Fields():
14
"""Define the resource constants."""
15
16
AGE = 'Age'
0 commit comments