Skip to content

Commit

Permalink
⬆️ Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
trymzet committed Aug 10, 2021
1 parent 5dc7647 commit bc8a2a2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions viadot/examples/hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,13 @@

file_path = inspect.getfile(lambda: None)
dir_path = Path(file_path).parent
dir_path_2 = os.path.abspath("")
# file_path = Path(__file__).resolve().parent
file_path = str(dir_path) + "/answer.txt"

logger = logging.get_logger(__name__)
logger.warning(file_path)
logger.warning(os.getcwd())
logger.warning(os.listdir())
logger.warning(os.listdir("/home"))
logger.warning(dir_path_2)
logger.warning(os.listdir("/home/viadot"))


@task
Expand Down

0 comments on commit bc8a2a2

Please sign in to comment.