apppy-logger 0.4.0__tar.gz → 0.5.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of apppy-logger might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apppy-logger
3
- Version: 0.4.0
3
+ Version: 0.5.0
4
4
  Summary: Python logger extensions for server development
5
5
  Project-URL: Homepage, https://github.com/spals/apppy
6
6
  Author: Tim Kral
@@ -20,7 +20,7 @@ class LoggingStorage(logging.Filter):
20
20
  def filter(self, record: logging.LogRecord) -> bool:
21
21
  stored_state = self.read_all()
22
22
  if hasattr(record, "state") and isinstance(record.state, dict):
23
- record.state.update(stored_state)
23
+ record.state.update(stored_state) # type: ignore[invalid-assignment]
24
24
  else:
25
25
  record.state = stored_state
26
26
 
File without changes
File without changes
File without changes