From 852a36ce1820afdf8a665639006b68b29802ccf5 Mon Sep 17 00:00:00 2001 From: Michael Panchenko Date: Tue, 27 May 2025 17:40:16 +0200 Subject: [PATCH] Docstring [ci skip] --- src/serena/symbol.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/serena/symbol.py b/src/serena/symbol.py index 3b939b8..8f3ab47 100644 --- a/src/serena/symbol.py +++ b/src/serena/symbol.py @@ -123,9 +123,6 @@ class Symbol(ToStringMixin): @property def location(self) -> SymbolLocation: - """ - :return: the start location of the actual symbol identifier - """ return SymbolLocation(relative_path=self.relative_path, line=self.line, column=self.column, end_line=self.end_line) @property