Skip to content

Commit

Permalink
Add type ignore to make mypy happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
shunping committed Dec 17, 2024
1 parent d077e74 commit 409599d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/coders/coders_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def test_numpy_int(self):
class WindowedValueCoderTest(unittest.TestCase):
def test_to_type_hint(self):
coder = coders.WindowedValueCoder(coders.VarIntCoder())
self.assertEqual(coder.to_type_hint(), typehints.WindowedValue[int])
self.assertEqual(coder.to_type_hint(), typehints.WindowedValue[int]) # type: ignore[misc]


if __name__ == '__main__':
Expand Down

0 comments on commit 409599d

Please sign in to comment.