Skip to content

Commit 951753b

Browse files
committed
reflect PR feedback
1 parent c414c62 commit 951753b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/test-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,4 @@ jobs:
6161
uses: pypa/gh-action-pypi-publish@release/v1
6262
with:
6363
repository-url: https://test.pypi.org/legacy/
64+
skip-existing: true

src/designer_plugin/d3sdk/function.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,11 +256,11 @@ def __init__(self, module_name: str, func: Callable[P, T]):
256256

257257
super().__init__(func)
258258

259-
# Update the function in case the function was updated in same session.
259+
# Update the function in case the function was updated in the same session.
260260
# For example, jupyter notebook server can be running, but function signature can
261261
# change constantly.
262262
if self in D3Function._available_d3functions[module_name]:
263-
logger.warning(
263+
logger.debug(
264264
"Function '%s' in module '%s' is being replaced.",
265265
self.name,
266266
module_name,

0 commit comments

Comments
 (0)