Skip to content

Commit

Permalink
v4.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Aug 16, 2024
1 parent 176bbef commit 276b75e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bddrest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from .exceptions import InvalidUrlParametersError, CallVerifyError


__version__ = '4.4.0'
__version__ = '4.4.1'
8 changes: 4 additions & 4 deletions bddrest/documentary/documenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ def write_call(self, basecall, call, formatter):

for v in value:
info = info or {}
required = info.get('required')
not_none = info.get('not_none')
needed = info.get('required')
notnone = info.get('not_none')
type_ = info.get('type')
rows.append((
k,
'?' if required is None else required and 'Yes' or 'No',
'?' if not_none is None else not_none and 'No' or 'Yes',
'?' if needed is None else needed and 'Yes' or 'No',
'?' if notnone is None else notnone and 'No' or 'Yes',
'?' if type_ is None else type_,
v
))
Expand Down

0 comments on commit 276b75e

Please sign in to comment.