Skip to content

Commit 4faf08d

Browse files
committed
Add newlines
1 parent 1072e47 commit 4faf08d

File tree

4 files changed

+4
-14
lines changed

4 files changed

+4
-14
lines changed

client/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ __pycache__
44
fossildbapi_pb2_grpc.py
55
fossildbapi_pb2.py
66

7-
env
7+
env

client/interactive/client.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,6 @@
1212
from textual.widgets import (Button, DataTable, Footer, Header, Input, Label,
1313
RichLog)
1414

15-
# import logging
16-
17-
# logFile = "sample.log"
18-
# logging.basicConfig(
19-
# filename=logFile,
20-
# filemode="a",
21-
# level=logging.DEBUG,
22-
# format="%(asctime)s - %(levelname)s: %(message)s",
23-
# )
24-
2515

2616
class ListKeysWidget(Widget):
2717
def __init__(self, stub, **kwargs):
@@ -46,7 +36,7 @@ class FileNameHint(Widget):
4636
filename = reactive("none")
4737

4838
def render(self) -> str:
49-
return f"Press the button above to save the value at the key in {self.filename}"
39+
return f"Press the button above to download the value for the selected key to {self.filename}"
5040

5141

5242
class KeyInfoWidget(Widget):

client/interactive/client.tcss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ ListKeysWidget #list-keys {
1313

1414
Button {
1515
width: 100%;
16-
}
16+
}

client/update_api.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set -Eeuo pipefail
44
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
55

66
python3 -m grpc_tools.protoc -I$SCRIPTPATH/../src/main/protobuf --python_out=$SCRIPTPATH --grpc_python_out=$SCRIPTPATH $SCRIPTPATH/../src/main/protobuf/fossildbapi.proto
7-
cp $SCRIPTPATH/fossildbapi_pb2* $SCRIPTPATH/interactive/
7+
cp $SCRIPTPATH/fossildbapi_pb2* $SCRIPTPATH/interactive/

0 commit comments

Comments
 (0)