Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
grk2450-fireworks-tutorial
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ivan Kondov
grk2450-fireworks-tutorial
Commits
3a64a9f4
Commit
3a64a9f4
authored
1 year ago
by
Rodrigo Cortes Mejia
Browse files
Options
Downloads
Patches
Plain Diff
Replaced fw_config method w/ default lpad location
parent
689fca97
No related branches found
Branches containing commit
No related tags found
1 merge request
!3
Resolve "lpad_query command not working without -l option"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/lpad_query.py
+4
-4
4 additions, 4 deletions
lib/lpad_query.py
with
4 additions
and
4 deletions
lib/lpad_query.py
+
4
−
4
View file @
3a64a9f4
...
...
@@ -2,7 +2,7 @@
import
json
,
yaml
from
argparse
import
ArgumentParser
from
fireworks.scripts.lpad_run
import
get_lp
from
fireworks.fw_config
import
CONFIG_FILE_DIR
from
fireworks.fw_config
import
LAUNCHPAD_LOC
from
dbquery
import
db_select
def
query
():
...
...
@@ -13,9 +13,9 @@ def query():
help
=
'
Set output format: json or yaml.
'
)
parser
.
add_argument
(
'
-c
'
,
'
--config_dir
'
,
help
=
'
path to configuration file (if -l unspecified)
'
,
default
=
CONFIG_FILE_DIR
)
default
=
LAUNCHPAD_LOC
)
parser
.
add_argument
(
'
-l
'
,
'
--launchpad_file
'
,
help
=
'
path to launchpad file
'
,
default
=
None
)
help
=
'
path to launchpad file
'
,
default
=
LAUNCHPAD_LOC
)
parser
.
add_argument
(
'
-f
'
,
'
--query_file
'
,
required
=
True
,
help
=
'
path to query file
'
)
args
=
parser
.
parse_args
()
...
...
@@ -27,7 +27,7 @@ def query():
fmt
=
args
.
query_file
.
split
(
'
.
'
)[
-
1
]
assert
fmt
in
[
'
json
'
,
'
yaml
'
]
with
open
(
args
.
query_file
,
'
r
'
)
as
inp
:
with
open
(
args
.
query_file
,
'
r
'
,
encoding
=
'
utf-8
'
)
as
inp
:
query_dict
=
json
.
load
(
inp
)
if
fmt
==
'
json
'
else
yaml
.
safe_load
(
inp
)
print
(
dumpf
(
db_select
(
get_lp
(
args
),
**
query_dict
),
**
dumpkw
[
args
.
output
]))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment