*: remove path-based import from all PropertyMappings

This commit is contained in:
Jens Langhammer
2020-07-20 16:43:30 +02:00
parent c9663a08da
commit 4040eb9619
2 changed files with 8 additions and 2 deletions

View File

@ -89,7 +89,10 @@ class LDAPPropertyMapping(PropertyMapping):
object_field = models.TextField()
form = "passbook.sources.ldap.forms.LDAPPropertyMappingForm"
def form(self) -> Type[ModelForm]:
from passbook.sources.ldap.forms import LDAPPropertyMappingForm
return LDAPPropertyMappingForm
def __str__(self):
return f"LDAP Property Mapping {self.expression} -> {self.object_field}"