Ben Nguyen commited on
Commit
060d0c3
1 Parent(s): b460de2
Files changed (1) hide show
  1. handler.py +1 -1
handler.py CHANGED
@@ -5,7 +5,7 @@ import os
5
 
6
  class EndpointHandler():
7
  def __init__(self, path=""):
8
- os.listdir(os.cwd())
9
 
10
  self.model = load_from_checkpoint("model.ckpt")
11
 
 
5
 
6
  class EndpointHandler():
7
  def __init__(self, path=""):
8
+ os.listdir(os.getcwd())
9
 
10
  self.model = load_from_checkpoint("model.ckpt")
11