matdmiller commited on
Commit
46a82a9
1 Parent(s): 8dde6b0

fix audio file safari

Browse files
Files changed (2) hide show
  1. app.ipynb +1 -1
  2. app.py +1 -1
app.ipynb CHANGED
@@ -89,7 +89,7 @@
89
  "outputs": [],
90
  "source": [
91
  "#| export\n",
92
- "TEMP = os.environ['TMPDIR']\n",
93
  "TEMP_DIR = Path(TEMP)\n",
94
  "print('TEMP Dir:', TEMP_DIR)"
95
  ]
 
89
  "outputs": [],
90
  "source": [
91
  "#| export\n",
92
+ "TEMP = os.environ['TEMP']\n",
93
  "TEMP_DIR = Path(TEMP)\n",
94
  "print('TEMP Dir:', TEMP_DIR)"
95
  ]
app.py CHANGED
@@ -47,7 +47,7 @@ from tenacity import (
47
  ) # for exponential backoff
48
 
49
  # %% app.ipynb 4
50
- TEMP = os.environ['TMPDIR']
51
  TEMP_DIR = Path(TEMP)
52
  print('TEMP Dir:', TEMP_DIR)
53
 
 
47
  ) # for exponential backoff
48
 
49
  # %% app.ipynb 4
50
+ TEMP = os.environ['TEMP']
51
  TEMP_DIR = Path(TEMP)
52
  print('TEMP Dir:', TEMP_DIR)
53