Fix module not found: add root directory to sys path

このコミットが含まれているのは:
Aymane Hrouch 2023-04-27 13:12:04 +01:00
コミット 28a820a8bc
1個のファイルの変更6行の追加1行の削除

ファイルの表示

@ -1,3 +1,8 @@
import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), os.path.pardir))
import streamlit as st
import phind