Remove unneeded echo
This commit is contained in:
@ -55,8 +55,6 @@ def add(
|
|||||||
@app.command()
|
@app.command()
|
||||||
def stats() -> None:
|
def stats() -> None:
|
||||||
"""Print the number of feeds and entries in the database"""
|
"""Print the number of feeds and entries in the database"""
|
||||||
app_dir = typer.get_app_dir(Settings.APP_NAME)
|
|
||||||
typer.echo(app_dir)
|
|
||||||
with closing(make_reader(Settings.db_file)) as reader:
|
with closing(make_reader(Settings.db_file)) as reader:
|
||||||
feed_count = reader.get_feed_counts()
|
feed_count = reader.get_feed_counts()
|
||||||
entry_count = reader.get_entry_counts()
|
entry_count = reader.get_entry_counts()
|
||||||
|
Reference in New Issue
Block a user