dialoghelper 0.0.7__tar.gz → 0.0.8__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 dialoghelper might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dialoghelper
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: Helper functions for solveit dialogs
5
5
  Home-page: https://github.com/AnswerDotAI/dialoghelper
6
6
  Author: Jeremy Howard
@@ -0,0 +1,2 @@
1
+ __version__ = "0.0.8"
2
+ from .core import *
@@ -142,6 +142,7 @@ def update_msg(
142
142
  Use `content` param to update contents. Be sure to pass a `sid` (stable id -- the pk) not a `mid`
143
143
  (which is used only for sorting, and can change).
144
144
  Only include parameters to update--missing ones will be left unchanged."""
145
+ sid = msg.pop('sid', sid)
145
146
  kw = (msg or {}) | kwargs
146
147
  if not sid: raise TypeError("update_msg needs either a dict message or `sid=...`")
147
148
  kw.pop('did', None)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dialoghelper
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: Helper functions for solveit dialogs
5
5
  Home-page: https://github.com/AnswerDotAI/dialoghelper
6
6
  Author: Jeremy Howard
@@ -1,7 +1,7 @@
1
1
  [DEFAULT]
2
2
  repo = dialoghelper
3
3
  lib_name = dialoghelper
4
- version = 0.0.7
4
+ version = 0.0.8
5
5
  min_python = 3.9
6
6
  license = apache2
7
7
  black_formatting = False
@@ -1,2 +0,0 @@
1
- __version__ = "0.0.7"
2
- from .core import *
File without changes
File without changes
File without changes
File without changes
File without changes