dialoghelper 0.0.7__tar.gz → 0.0.9__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.9
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.9"
2
+ from .core import *
@@ -143,6 +143,7 @@ def update_msg(
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
145
  kw = (msg or {}) | kwargs
146
+ sid = kw.pop('sid', sid)
146
147
  if not sid: raise TypeError("update_msg needs either a dict message or `sid=...`")
147
148
  kw.pop('did', None)
148
149
  run_cmd('add_msg', placement='update', sid=sid, **kw)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dialoghelper
3
- Version: 0.0.7
3
+ Version: 0.0.9
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.9
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