Skip to content

Commit

Permalink
remove reading packaje.json from incorect location (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcblundell authored Dec 11, 2024
2 parents 5c01169 + 347a6ef commit 7a9fbb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/ttnn_visualizer/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
from pathlib import Path

from ttnn_visualizer.utils import str_to_bool, read_version_from_package_json
from ttnn_visualizer.utils import str_to_bool


class DefaultConfig(object):
Expand All @@ -17,7 +17,7 @@ class DefaultConfig(object):

# Path Settings
REPORT_DATA_DIRECTORY = Path(__file__).parent.absolute().joinpath("data")
VERSION = read_version_from_package_json()
VERSION = "0.14.1"
LOCAL_DATA_DIRECTORY = Path(REPORT_DATA_DIRECTORY).joinpath("local")
REMOTE_DATA_DIRECTORY = Path(REPORT_DATA_DIRECTORY).joinpath("remote")
APPLICATION_DIR = os.path.abspath(os.path.join(__file__, "..", os.pardir))
Expand Down

0 comments on commit 7a9fbb3

Please sign in to comment.