Skip to content

Commit

Permalink
fix line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
simleo committed Jan 10, 2024
1 parent 1b5d67f commit 5e2802e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rocrate/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@ def workflow(crate_dir, path, language, property):
@OPTION_PROPS
def suite(crate_dir, identifier, name, main_entity, property):
crate = ROCrate(crate_dir, init=False, gen_preview=False)
suite = crate.add_test_suite(identifier=add_hash(identifier), name=name, main_entity=main_entity, properties=dict(property))
suite = crate.add_test_suite(
identifier=add_hash(identifier), name=name, main_entity=main_entity,
properties=dict(property)
)
crate.metadata.write(crate_dir)
print(suite.id)

Expand Down

0 comments on commit 5e2802e

Please sign in to comment.