Skip to content

Commit

Permalink
fix: zip method backcompat
Browse files Browse the repository at this point in the history
  • Loading branch information
Archento committed Mar 6, 2024
1 parent e28ea2c commit 254bb21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,5 @@

class TestConfig(unittest.TestCase):
def test_parse_agentverse_config(self):
for agent, expected_config in zip(agents, expected_configs, strict=False):
for agent, expected_config in zip(agents, expected_configs): # noqa
self.assertEqual(agent.agentverse, expected_config)

0 comments on commit 254bb21

Please sign in to comment.