We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e1a7b3 commit d375a97Copy full SHA for d375a97
src/pownet/core/data_processor.py
@@ -69,9 +69,11 @@ def load_transmission_data(self) -> None:
69
70
# Generic transmission parameters for a power system
71
# Print files in get_database_dir()
72
- print("\n\nDEBUGGING")
+ print("DEBUGGING")
73
+ print(os.getcwd())
74
print(get_database_dir())
- print("File list:\n", os.listdir(get_database_dir()))
75
+ print(os.dirname(os.dirname(os.dirname(os.abspath(__file__)))))
76
+ print("End of debugging")
77
78
self.transmission_params: dict = (
79
pd.read_csv(
0 commit comments