Skip to content

Commit b9b929d

Browse files
grpc: remove junk values from backend Versions object
These junk values were placeholders I was using for some very early on debugging and somehow stopped noticing them. Remove them. Signed-off-by: John Mulligan <[email protected]>
1 parent c5e2b4c commit b9b929d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sambacc/grpc/backend.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030

3131
@dataclasses.dataclass
3232
class Versions:
33-
samba_version: str = "foo"
34-
sambacc_version: str = "bar"
35-
container_version: str = "baz"
33+
samba_version: str = ""
34+
sambacc_version: str = ""
35+
container_version: str = ""
3636

3737

3838
@dataclasses.dataclass

0 commit comments

Comments
 (0)