ysharma HF Staff commited on
Commit
bfe2f89
·
verified ·
1 Parent(s): 2572a3e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -15,12 +15,11 @@ gradio_temp_dir = os.environ['GRADIO_TEMP_DIR']
15
  print(f'GRADIO_TEMP_DIR is = {gradio_temp_dir}')
16
 
17
  current_directory = os.getcwd()
18
- print(f'current_directory is = {os.environ['current_directory']}')
19
  new_directory_name = os.environ['GRADIO_TEMP_DIR']
20
 
21
  # Constructing the path to the new directory
22
  new_directory_path = os.path.join(current_directory, new_directory_name)
23
-
24
  print(f"The path to the new directory is: {new_directory_path}")
25
 
26
 
 
15
  print(f'GRADIO_TEMP_DIR is = {gradio_temp_dir}')
16
 
17
  current_directory = os.getcwd()
18
+ print(f'current_directory is = {current_directory}')
19
  new_directory_name = os.environ['GRADIO_TEMP_DIR']
20
 
21
  # Constructing the path to the new directory
22
  new_directory_path = os.path.join(current_directory, new_directory_name)
 
23
  print(f"The path to the new directory is: {new_directory_path}")
24
 
25