Skip to content

Commit

Permalink
revert file path definitions in off design file
Browse files Browse the repository at this point in the history
  • Loading branch information
tyneises committed Aug 16, 2023
1 parent f2968e4 commit b169c92
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
import sys
import os

parentDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.append(parentDir)
absFilePath = os.path.abspath(__file__)
fileDir = os.path.dirname(os.path.abspath(__file__))
parentDir = os.path.dirname(fileDir)
newPath = os.path.join(parentDir, 'core')

from core import sco2_cycle_ssc as sco2_solve
from core import sco2_plots as cy_plt
sys.path.append(newPath)

import sco2_cycle_ssc as sco2_solve
import sco2_plots as cy_plt

##################################################
##################################################
Expand Down

0 comments on commit b169c92

Please sign in to comment.