Skip to content

Commit

Permalink
Avoid isort in this PR
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Dec 4, 2022
1 parent 009f984 commit 058ce0e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions validation/multichan_coupledhistosys_histfactory/makedata.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import ROOT

import json
import sys

import ROOT

with open(sys.argv[1], encoding="utf-8") as source_file:
source_data = json.load(source_file)
root_file = sys.argv[2]
Expand Down
4 changes: 2 additions & 2 deletions validation/multichan_coupledoverall_histfactory/makedata.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import ROOT

import json
import sys

import ROOT

with open(sys.argv[1], encoding="utf-8") as source_file:
source_data = json.load(source_file)
root_file = sys.argv[2]
Expand Down
4 changes: 2 additions & 2 deletions validation/multichannel_histfactory/makedata.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import ROOT

import json
import sys

import ROOT

with open(sys.argv[1], encoding="utf-8") as source_file:
source_data = json.load(source_file)
root_file = sys.argv[2]
Expand Down
4 changes: 2 additions & 2 deletions validation/xmlimport_input2/makedata.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import ROOT

import json
import sys

import ROOT

with open(sys.argv[1], encoding="utf-8") as source_file:
source_data = json.load(source_file)
root_file = sys.argv[2]
Expand Down

0 comments on commit 058ce0e

Please sign in to comment.