Skip to content

Commit 8ebbbcf

Browse files
Copilotjaraco
andauthored
Remove redundant '(a text string)' from cssText docstrings
Agent-Logs-Url: https://github.com/jaraco/cssutils/sessions/0ce2b23e-e394-40c4-8bb8-0172e0728a69 Co-authored-by: jaraco <308610+jaraco@users.noreply.github.com>
1 parent 7ef8106 commit 8ebbbcf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cssutils/css/cssstylesheet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def cssRules(self, cssRules):
146146
self._cssRules = cssRules
147147

148148
def _getCssText(self):
149-
"Textual representation of the stylesheet (a text string)."
149+
"Textual representation of the stylesheet."
150150
return cssutils.ser.do_CSSStyleSheet(self)
151151

152152
def _setCssText(self, cssText): # noqa: C901
@@ -361,7 +361,7 @@ def ruleset(expected, seq, token, tokenizer):
361361
cssText = property(
362362
_getCssText,
363363
_setCssText,
364-
"Textual representation of the stylesheet (a text string)",
364+
"Textual representation of the stylesheet",
365365
)
366366

367367
def _resolveImport(self, url):

0 commit comments

Comments
 (0)