From c9ed33e047bdacecc0bd436803e19158b28613cf Mon Sep 17 00:00:00 2001 From: Tpt Date: Tue, 13 Jun 2023 21:42:25 +0200 Subject: [PATCH] Python: Removes DefaultGraph.value Not useful, always returns the empty string --- python/src/model.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/python/src/model.rs b/python/src/model.rs index 26791351..9bebf1db 100644 --- a/python/src/model.rs +++ b/python/src/model.rs @@ -441,13 +441,6 @@ impl PyDefaultGraph { Self {} } - /// :return: the empty string. - /// :rtype: str - #[getter] - fn value(&self) -> &str { - "" - } - fn __str__(&self) -> &str { "DEFAULT" }