damccorm commented on code in PR #29016:
URL: https://github.com/apache/beam/pull/29016#discussion_r1369294119
##########
sdks/python/apache_beam/ml/transforms/tft_test.py:
##########
@@ -576,6 +574,17 @@ def setUp(self) -> None:
def tearDown(self):
shutil.rmtree(self.artifact_location)
+ def validate_count_per_key(self):
+ import os
+ key_vocab_location = os.path.join(
+ self.artifact_location, 'transform_fn/assets/key_vocab')
+ with open(key_vocab_location, 'r'):
Review Comment:
```suggestion
with open(key_vocab_location, 'r') as f:
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]