Skip to content

Commit f3c9bd8

Browse files
committed
Update changelog
1 parent a32401d commit f3c9bd8

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pkg-py/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
* The entire functional API (i.e., `init()`, `sidebar()`, `server()`, etc) has been deprecated in favor of a new class/OOP API. Namely, the new `QueryChat()` class is now the recommended way to start (instead of `init()`), which has methods to replace old functions (e.g., `.sidebar()`, `.server()`, etc). (#101)
1313
* The previously deprecated `create_chat_callback` parameter of `init()` was removed. (#101)
14-
* `querychat.querychat.QueryChat` was renamed to `querychat.querychat.QueriedValues`. (#101)
14+
* The `querychat.querychat` submodule was removed. It was never intended to be a part of the public API. (#101)
1515

1616
## [UNRELEASED]
1717

pkg-py/src/querychat/_querychat.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,10 @@ def server(self):
488488
489489
qc = QueryChat(my_dataframe, "my_data")
490490
491-
app_ui = ui.page_fluid(qc.sidebar(), ui.output_data_frame("data_table"))
491+
app_ui = ui.page_fluid(
492+
qc.sidebar(),
493+
ui.output_data_frame("data_table"),
494+
)
492495
493496
494497
def server(input, output, session):

0 commit comments

Comments
 (0)