Not all objects have a `.__name__`
parent
b6ae77b5ac
commit
2900ceb003
|
@ -82,7 +82,7 @@ class NamespacePath(str):
|
||||||
|
|
||||||
) -> tuple[str, str]:
|
) -> tuple[str, str]:
|
||||||
ref = self.load_ref()
|
ref = self.load_ref()
|
||||||
return ref.__module__, ref.__name__
|
return ref.__module__, getattr(ref, '__name__', '')
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_ref(
|
def from_ref(
|
||||||
|
|
Loading…
Reference in New Issue