Skip to content

Commit 1036e13

Browse files
committed
test
1 parent d60af81 commit 1036e13

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ In addtion, the `SigLLM` object takes in a `decimal` argument to determine how m
6868

6969
```python3
7070
from sigllm import SigLLM
71+
from mlblocks.discovery import get_pipelines_paths
72+
73+
print(get_pipelines_paths())
7174

7275
hyperparameters = {
7376
"orion.primitives.timeseries_anomalies.find_anomalies#1": {

tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
from packaging.requirements import Requirement
1111
from packaging.version import Version
1212

13-
from sigllm import SigLLM
14-
from mlblocks.discovery import add_primitives_path, add_pipelines_path, get_primitives_paths, get_pipelines_paths
13+
from mlblocks.discovery import add_primitives_path, add_pipelines_path
1514

1615
def _get_minimum_versions(dependencies, python_version):
1716
min_versions = {}
@@ -85,6 +84,7 @@ def add_paths():
8584

8685
@task
8786
def readme(c):
87+
print(os.walk(os.getcwd()))
8888
add_paths()
8989
print(get_primitives_paths())
9090
print(get_pipelines_paths())

0 commit comments

Comments
 (0)