Skip to content

Commit

Permalink
Remove redundant print statements (huggingface#23133)
Browse files Browse the repository at this point in the history
remove redundant print statements
  • Loading branch information
alaradirik authored May 3, 2023
1 parent e3ee45a commit b0a7809
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_backbone_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,6 @@ def test_backbone_common_attributes(self):
# Verify num_features has been initialized in the backbone init
self.assertIsNotNone(backbone.num_features)
self.assertTrue(len(backbone.channels) == len(backbone.out_indices))
print(backbone.stage_names)
print(backbone.num_features)
self.assertTrue(len(backbone.stage_names) == len(backbone.num_features))
self.assertTrue(len(backbone.channels) <= len(backbone.num_features))
self.assertTrue(len(backbone.out_feature_channels) == len(backbone.stage_names))
Expand Down

0 comments on commit b0a7809

Please sign in to comment.