Exemplo n.º 1
0
 def test(a: only(int)):
     return a
Exemplo n.º 2
0
 def test_only(self):
     self.assertIsInstance(1, only(int))
     self.assertNotIsInstance(True, only(int))