Skip to content

Commit 3ad0c50

Browse files
committed
Coverage improve
1 parent dd5f9d5 commit 3ad0c50

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

.coveragerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[run]
22
branch = True
3+
omit = superannotate/pycocotools_sa/*
34

45

56
[report]

.pylintrc

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,26 @@
11
[BASIC]
2-
good-names=df,f,e
2+
good-names=df,f,e,i,j,k
3+
4+
bad-functions=
5+
apply,
6+
exit,
7+
input,
8+
quit
9+
10+
[ELIF]
11+
max-nested-blocks=5
312

413
[MASTER]
514
load-plugins=pylint_pytest
15+
persistent=yes
16+
ignore=pycocotools_sa
17+
18+
[MESSAGE_CONTROL]
19+
disable=
20+
no-else-return,
21+
too-many-lines,
22+
too-many-arguments,
23+
too-many-instance-attributes
624

725
[SPELLING]
826

superannotate/__main__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99

1010
from .exceptions import SABaseException
1111

12-
import os
13-
1412
logger = logging.getLogger("superannotate-python-sdk")
1513

1614
_CLI_COMMAND = Path(sys.argv[0]).name

0 commit comments

Comments
 (0)