Skip to content

Commit b1273fc

Browse files
committed
remove temporary lines
1 parent 3e6defb commit b1273fc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

examples/topic/basic_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
async def connect(endpoint: str, database: str) -> ydb.aio.Driver:
99
config = ydb.DriverConfig(endpoint=endpoint, database=database)
10-
# config.credentials = ydb.credentials_from_env_variables()
10+
config.credentials = ydb.credentials_from_env_variables()
1111
driver = ydb.aio.Driver(config)
1212
await driver.wait(5, fail_fast=True)
1313
return driver

ydb/_grpc/grpcwrapper/ydb_topic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ def to_proto(
220220
proto.uncompressed_size = self.uncompressed_size
221221

222222
for key, value in self.metadata_items.items():
223-
# TODO: CHECK
224223
item = ydb_topic_pb2.MetadataItem(key=key, value=value)
225224
proto.metadata_items.append(item)
226225

0 commit comments

Comments
 (0)