Skip to content

Commit 1e1e7e3

Browse files
committed
print contents
1 parent 09064f9 commit 1e1e7e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ from mlblocks.discovery import get_pipelines_paths
7373

7474
for path in get_pipelines_paths():
7575
print(path)
76-
print(os.listdir(path))
76+
if os.path.isdir(path):
77+
print(os.listdir(path))
7778

7879
hyperparameters = {
7980
"orion.primitives.timeseries_anomalies.find_anomalies#1": {

0 commit comments

Comments
 (0)