Skip to content

Commit

Permalink
fix: pragma no cover
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Jul 22, 2022
1 parent 8dfbb75 commit 02090ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adbnx_adapter/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ def __init__(

@property
def db(self) -> Database:
return self.__db
return self.__db # pragma: no cover

@property
def cntrl(self) -> ADBNX_Controller:
return self.__cntrl
return self.__cntrl # pragma: no cover

def set_logging(self, level: Union[int, str]) -> None:
logger.setLevel(level)
Expand Down

0 comments on commit 02090ca

Please sign in to comment.