Browse Source

Explicit is better than implicit.

```
>>> import this
[...]
```

thanks to @pedrobaeza for the remainder :-)
pull/145/head
Charbel Jacquin 9 years ago
parent
commit
bbf0f355d8
  1. 3
      partner_relations/model/res_partner_relation_type.py

3
partner_relations/model/res_partner_relation_type.py

@ -58,7 +58,8 @@ class ResPartnerRelationType(models.Model):
'Right partner category',
)
allow_self = fields.Boolean(
'Allow both sides to be the same'
'Allow both sides to be the same',
default=False,
)
@api.model

Loading…
Cancel
Save