We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2178227 commit ec15955Copy full SHA for ec15955
cuenca/resources/users.py
@@ -96,9 +96,9 @@ def balance(self) -> int:
96
return be.rolling_balance if be else 0
97
98
@property
99
- def full_name(self):
100
- name = f'{self.names} {self.first_surname} {self.second_surname}'
101
- return name.strip()
+ def full_name(self) -> str:
+ parts = [self.names, self.first_surname, self.second_surname]
+ return ' '.join(p for p in parts if p)
102
103
model_config = ConfigDict(
104
json_schema_extra={
cuenca/version.py
@@ -1,3 +1,3 @@
1
-__version__ = '2.1.16.dev1'
+__version__ = '2.1.16'
2
CLIENT_VERSION = __version__
3
API_VERSION = '2020-03-19'
0 commit comments