Skip to content

Commit

Permalink
Update navigator.py
Browse files Browse the repository at this point in the history
  • Loading branch information
seb5g committed Oct 29, 2024
1 parent 89a79a5 commit c5766ce
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/pymodaq_gui/plotting/navigator.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import sys
import os

from pathlib import Path

import numpy as np
from qtpy import QtGui, QtWidgets, QtCore
from qtpy.QtCore import Qt, QObject, Slot, Signal
Expand All @@ -21,10 +23,10 @@
from pymodaq_gui.parameter.pymodaq_ptypes.pixmap import PixmapCheckData


local_path = get_set_local_dir()
navigator_path = os.path.join(local_path, 'navigator_temp_files')
if not os.path.isdir(navigator_path):
os.makedirs(navigator_path)
local_path = get_set_local_dir(user=True)
# navigator_path = local_path.joinpath('navigator_temp_files')
# if not navigator_path.is_dir():
# navigator_path.mkdir()

logger = set_logger(get_module_name(__file__))

Expand Down

0 comments on commit c5766ce

Please sign in to comment.