Skip to content

Commit d37244d

Browse files
committed
chore: remove unnecessary comments
1 parent f2e8c46 commit d37244d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

diracx-db/src/diracx/db/sql/rss/schema.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ class RSSBase(DeclarativeBase):
2020

2121

2222
class ElementStatusBase:
23-
"""Prototype for tables."""
24-
2523
__table_args__ = {"mysql_engine": "InnoDB", "mysql_charset": "utf8mb4"}
2624

2725
name: Mapped[str64] = mapped_column("Name", primary_key=True)
@@ -45,9 +43,9 @@ class ElementStatusBase:
4543

4644

4745
class ElementStatusBaseWithID(ElementStatusBase):
48-
"""Prototype for tables.
46+
"""Almost the same as ElementStatusBase.
4947
50-
This is almost the same as ElementStatusBase, with the following differences:
48+
Differences:
5149
- there's an autoincrement ID column which is also the primary key
5250
- the name and statusType components are not part of the primary key
5351
"""

0 commit comments

Comments
 (0)