Skip to content

Commit

Permalink
6.6.0 (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-001 authored Nov 30, 2024
1 parent 353e65c commit d37fcce
Show file tree
Hide file tree
Showing 19 changed files with 1,293 additions and 1,217 deletions.
4 changes: 2 additions & 2 deletions dolphie/DataTypes.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from dataclasses import dataclass, field
from typing import Dict, List
from typing import Dict, List, Union

from rich.table import Table

Expand Down Expand Up @@ -30,7 +30,7 @@ class Replica:
host: str
connection: str = None
table: Table = None
replication_status: Dict[str, str] = field(default_factory=dict)
replication_status: Dict[str, Union[str, int]] = field(default_factory=dict)
mysql_version: str = None


Expand Down
Loading

0 comments on commit d37fcce

Please sign in to comment.