Skip to content

Commit ef67554

Browse files
authored
Merge branch 'main' into fille_peek_dev
2 parents 58ba6ae + 4d07c41 commit ef67554

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
__pycache__/
33
.pytest_cache/
44

5+
#servicex
6+
servicex.yaml
7+
58
#Distribution
69
dist/
710

@@ -10,3 +13,4 @@ servicex.yaml
1013

1114
#Testing
1215
samples_structure.txt
16+

servicex_analysis_utils/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@
3030

3131
__version__ = "1.0.0"
3232
__all__ = ["to_awk", "get_structure"]
33+

tests/test_materialization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import os
3434
import sys
3535
import numpy as np
36-
from servicex_analysis_utils.materialization import to_awk
36+
from servicex_analysis_utils import to_awk
3737
import types
3838

3939

tests/test_materialization_parquet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import logging
77
import numpy as np
88
import pyarrow.parquet as pq
9-
from servicex_analysis_utils.materialization import to_awk
9+
from servicex_analysis_utils import to_awk
1010

1111

1212
@pytest.fixture

0 commit comments

Comments
 (0)