Commit 096be631 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Remove redundant backslash in doc/docstring.py

parent cf2e620e
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -141,7 +141,7 @@ def dot_import_first(module: ModuleType, cls: type|None, name: str) -> tuple[obj
		if cls is None:
			raise
		return (
			(cls, module, f"{module.__name__}.{cls.__name__}") if name == "self" else \
			(cls, module, f"{module.__name__}.{cls.__name__}") if name == "self" else
			(getattr(cls, name), cls, f"{module.__name__}.{cls.__name__}.{name}")
		)