Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/bigger_uproot.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from servicex_client.dataset_identifier import RucioDatasetIdentifier
from servicex_client.models import ResultFormat
from servicex_client.servicex_client import ServiceXClient
from servicex import RucioDatasetIdentifier
from servicex import ResultFormat
from servicex import ServiceXClient

sx = ServiceXClient(backend="testing4")

Expand Down
4 changes: 2 additions & 2 deletions examples/python_codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from servicex_client.dataset_identifier import FileListDataset
from servicex_client.servicex_client import ServiceXClient
from servicex import FileListDataset
from servicex import ServiceXClient

sx = ServiceXClient(backend="testing4")
dataset_id = FileListDataset("root://eospublic.cern.ch//eos/opendata/atlas/OutreachDatasets/2020-01-22/4lep/MC/mc_345060.ggH125_ZZ4lep.4lep.root") # NOQA 501
Expand Down
6 changes: 3 additions & 3 deletions examples/single_file_uproot.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from servicex_client.dataset_identifier import FileListDataset
from servicex_client.models import ResultFormat
from servicex_client.servicex_client import ServiceXClient
from servicex import FileListDataset
from servicex import ResultFormat
from servicex import ServiceXClient

sx = ServiceXClient(backend="testing4")
dataset_id = FileListDataset("root://eospublic.cern.ch//eos/opendata/atlas/OutreachDatasets/2020-01-22/4lep/MC/mc_345060.ggH125_ZZ4lep.4lep.root") # NOQA 501
Expand Down
Loading