Skip to content

Commit

Permalink
Fixes bad import
Browse files Browse the repository at this point in the history
  • Loading branch information
skrawcz authored and elijahbenizzy committed Mar 21, 2024
1 parent f6ce3aa commit 4820f18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions burr/tracking/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import logging
import os
import traceback
from typing import Any, Dict, LiteralString, Optional
from typing import Any, Dict, Optional

from burr.core import Action, ApplicationGraph, State
from burr.core.persistence import BaseStateLoader, PersistedStateData
Expand Down Expand Up @@ -84,7 +84,7 @@ def __init__(
self.project_id = project

@classmethod
def get_storage_path(cls, project, storage_dir) -> LiteralString:
def get_storage_path(cls, project, storage_dir) -> str:
return os.path.join(os.path.expanduser(storage_dir), project)

@classmethod
Expand Down

0 comments on commit 4820f18

Please # to comment.