Tomer Godinger

Results 5 issues of Tomer Godinger

This adds the following features: 1. **`:hide-header:` option**: omits the title and description from the output. 2. **`:nested: complete` option**: produces a fuller listing with title, description, usage, short summary...

On lines 53-54: ```Python assert capacity_report_dao.get_rank(readings[0].site_id) == 9 assert capacity_report_dao.get_rank(readings[9].site_id) == 0 ``` should be: ```Python assert capacity_report_dao.get_rank(readings[0].site_id) == 0 assert capacity_report_dao.get_rank(readings[9].site_id) == 9 ```

The current code (lines 52-54) sets the new maximum capacity to `reading.wh_generated`: ```Python max_capacity = self.redis.hget(key, SiteStats.MAX_CAPACITY) if not max_capacity or reading.current_capacity > float(max_capacity): self.redis.hset(key, SiteStats.MAX_CAPACITY, reading.wh_generated) ``` Instead, line...

## Summary This adds the following features: 1. **`:hide-header:` option**: omits the title and description from the output. 2. **`:nested: complete` option**: produces a fuller listing with title, description, usage,...

The [Click 8.2.0 update](https://github.com/pallets/click/releases/tag/8.2.0) has deprecated the `protected_args` property, so now every command entered causes an `AttributeError` and the REPL session exits: ``` ... File ".../lib/python3.11/site-packages/click_repl/_repl.py", line 137, in repl...