Skip to content

Commit c7f156d

Browse files
committed
ruff
1 parent 40656b2 commit c7f156d

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

tests/builders.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ def with_id(self, task_id: str) -> 'TaskBuilder':
2929
self.id = task_id
3030
return self
3131

32-
3332
def with_context_id(self, context_id: str) -> 'TaskBuilder':
3433
self.context_id = context_id
3534
return self
@@ -210,4 +209,3 @@ def build(self) -> TaskArtifactUpdateEvent:
210209
append=self.append,
211210
last_chunk=self.last_chunk,
212211
)
213-

tests/fixtures.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ def task_with_history(task_builder):
7474
return task_builder.with_history(*messages).build()
7575

7676

77-
7877
@pytest.fixture
7978
def task_with_artifacts(task_builder):
8079
artifacts = [
@@ -84,7 +83,6 @@ def task_with_artifacts(task_builder):
8483
return task_builder.with_artifacts(*artifacts).build()
8584

8685

87-
8886
@pytest.fixture
8987
def task_manager(task_store):
9088
return TaskManager(
@@ -118,4 +116,3 @@ def populated_task_store(task_store):
118116
for task in tasks:
119117
task_store.set_task(task)
120118
return task_store
121-

0 commit comments

Comments
 (0)