Skip to content

Commit fb918f8

Browse files
committed
Remove debug print statements
1 parent e8301f9 commit fb918f8

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

src/hermes/commands/deposit/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ def init_command_parser(self, command_parser: argparse.ArgumentParser) -> None:
120120
def __call__(self, args: argparse.Namespace) -> None:
121121
self.args = args
122122
plugin_name = self.settings.target
123-
print(self.args)
124123

125124
ctx = CodeMetaContext()
126125
codemeta_file = ctx.get_cache("curate", ctx.hermes_name)

src/hermes/commands/harvest/base.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,8 @@ def __call__(self, args: argparse.Namespace) -> None:
4848
try:
4949
plugin_func = self.plugins[plugin_name]()
5050
harvested_data, tags = plugin_func(self)
51-
print(harvested_data)
52-
with HermesHarvestContext(
53-
ctx, plugin_name
54-
) as harvest_ctx:
51+
52+
with HermesHarvestContext(ctx, plugin_name) as harvest_ctx:
5553
harvest_ctx.update_from(harvested_data,
5654
plugin=plugin_name,
5755
timestamp=datetime.now().isoformat(), **tags)

0 commit comments

Comments
 (0)