Skip to content

Commit

Permalink
Fix type of results in ServiceSubtaskRecord
Browse files Browse the repository at this point in the history
  • Loading branch information
bennybp committed Apr 26, 2024
1 parent 3fa04e7 commit 9f95903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qcportal/qcportal/services/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from typing import Dict, Any, Optional
from typing import Dict, Any

from typing_extensions import Literal

Expand All @@ -13,4 +13,4 @@ class ServiceSubtaskRecord(BaseRecord):
required_programs: Dict[str, Any]
function: str
function_kwargs: Dict[str, Any]
results: Optional[Dict[str, Any]]
results: Any

0 comments on commit 9f95903

Please sign in to comment.