Skip to content

Commit 493eadc

Browse files
arorashivam96claude
andcommitted
style: fix black formatting in test_operation_context.py
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent bef256c commit 493eadc

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tests/unit/test_operation_context.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ def setUp(self):
3838

3939
def test_kwarg_sets_config(self):
4040
client = DataverseClient(
41-
self.base_url, self.mock_credential,
41+
self.base_url,
42+
self.mock_credential,
4243
operation_context="app=test/1.0;skill=dv-data;agent=claude-code",
4344
)
4445
self.assertEqual(client._config.operation_context, "app=test/1.0;skill=dv-data;agent=claude-code")
@@ -51,7 +52,8 @@ def test_config_and_kwarg_raises(self):
5152
config = DataverseConfig(operation_context="app=test/1.0")
5253
with self.assertRaises(ValueError):
5354
DataverseClient(
54-
self.base_url, self.mock_credential,
55+
self.base_url,
56+
self.mock_credential,
5557
config=config,
5658
operation_context="app=other/2.0",
5759
)

0 commit comments

Comments
 (0)