mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Remove hanging lines from docstrings. (#2349)
* Remove hanging lines from docstrings. Deleted hanging blank lines at the end of docstrings. Regex pattern: - find `\n\n( *)"""` - replace with `\n$1"""`
This commit is contained in:
committed by
GitHub
parent
80f4c12e76
commit
e5033d7d23
@@ -131,7 +131,6 @@ class GameCell(Button):
|
||||
Args:
|
||||
row (int): The row of the cell.
|
||||
col (int): The column of the cell.
|
||||
|
||||
"""
|
||||
super().__init__("", id=self.at(row, col))
|
||||
self.row = row
|
||||
|
||||
Reference in New Issue
Block a user