Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use keword arguments when instantiating
Note
events in freshness.py
Previously we were passing arguments during the `Note` event instantiations in freshness.py as positional arguments. This would cause not the desired `Note` event to be emitted, but instead get the message ``` [Note] Don't use positional arguments when constructing logging events ``` which was our fault, not the users'. Additionally, we were passing the level for the event in the `Note` instantiation when we needed to be passing it to the `fire_event` method.
- Loading branch information