Skip to content

Commit fed679a

Browse files
committed
auto push commit coverage
1 parent c95d50c commit fed679a

2 files changed

Lines changed: 19 additions & 13 deletions

File tree

corbertura.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" ?>
2-
<coverage version="5.5" timestamp="1632296315122" lines-valid="516" lines-covered="492" line-rate="0.9535" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
2+
<coverage version="5.5" timestamp="1632296536398" lines-valid="516" lines-covered="492" line-rate="0.9535" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
33
<!-- Generated by coverage.py: https://coverage.readthedocs.io -->
44
<!-- Based on https://raw.githubusercontent.com/cobertura/web/master/htdocs/xml/coverage-04.dtd -->
55
<sources>
@@ -252,17 +252,17 @@
252252
<lines>
253253
<line number="15" hits="1"/>
254254
<line number="18" hits="1"/>
255-
<line number="22" hits="1"/>
256255
<line number="24" hits="1"/>
257-
<line number="25" hits="1"/>
258-
<line number="28" hits="1"/>
259-
<line number="32" hits="1"/>
260-
<line number="34" hits="1"/>
261-
<line number="35" hits="1"/>
256+
<line number="26" hits="1"/>
257+
<line number="27" hits="1"/>
258+
<line number="30" hits="1"/>
259+
<line number="36" hits="1"/>
260+
<line number="38" hits="1"/>
262261
<line number="39" hits="1"/>
263262
<line number="43" hits="1"/>
264-
<line number="45" hits="1"/>
265-
<line number="46" hits="1"/>
263+
<line number="49" hits="1"/>
264+
<line number="51" hits="1"/>
265+
<line number="52" hits="1"/>
266266
</lines>
267267
</class>
268268
<class name="__init__.py" filename="pyben/__init__.py" complexity="0" line-rate="1" branch-rate="0">

pyben/exceptions.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717

1818
class DecodeError(Exception):
1919

20-
"""Error occured during decode process."""
20+
"""
21+
Error occured during decode process.
22+
"""
2123

2224
def __init__(self, val=None, msg=None):
2325
"""Construct Exception DecodeError."""
@@ -27,7 +29,9 @@ def __init__(self, val=None, msg=None):
2729

2830
class EncodeError(Exception):
2931

30-
"""Error occured during encoding process."""
32+
"""
33+
Error occured during encoding process.
34+
"""
3135

3236
def __init__(self, val=None):
3337
"""Construct Exception EncodeError."""
@@ -37,8 +41,10 @@ def __init__(self, val=None):
3741

3842

3943
class FilePathError(Exception):
40-
41-
"""Bad path error."""
44+
45+
"""
46+
Bad path error.
47+
"""
4248

4349
def __init__(self, obj=None):
4450
"""Construct Exception Subclass FilePathError."""

0 commit comments

Comments
 (0)