Remove unneeded echo

This commit is contained in:
2021-12-21 23:37:06 +01:00
parent 754bc2a053
commit 14b0d34145

View File

@ -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()