We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37ae235 commit 2e0178dCopy full SHA for 2e0178d
exasol/nb_connector/text_ai_extension_wrapper.py
@@ -1,3 +1,5 @@
1
+from typing import Optional
2
+
3
from exasol.nb_connector.secret_store import Secrets
4
from pathlib import Path
5
@@ -6,8 +8,8 @@
6
8
LATEST_KNOWN_VERSION = "???"
7
9
10
def deploy_licence(conf: Secrets,
- licence_file: Path = None,
- licence_content: str = None) -> None:
11
+ licence_file: Optional[Path] = None,
12
+ licence_content: Optional[str] = None) -> None:
13
"""
14
Deploys the given license and saves its identifier to the secret store. The licence can either be
15
defined by a path pointing to a licence file, or by the licence content given as a string.
0 commit comments