Skip to content

Commit 93f3e71

Browse files
committed
pre-commit hooks
1 parent 0d9c5f3 commit 93f3e71

File tree

6 files changed

+9
-16
lines changed

6 files changed

+9
-16
lines changed

doc/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,3 @@ pdf:
2929
.PHONY: clean
3030
clean:
3131
rm -rf $(BUILDDIR)/*
32-
33-

doc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ To make PDF documentation, run::
2121

2222
make pdf
2323

24-
The program ``latexmk`` may be required by Sphinx to generate PDF output.
24+
The program ``latexmk`` may be required by Sphinx to generate PDF output.

doc/source/conf.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88
import os
99

10-
project = 'Python API for Select AI'
11-
copyright = '2025, Oracle and/or its affiliates. All rights reserved.'
12-
author = 'Oracle'
10+
project = "Python API for Select AI"
11+
copyright = "2025, Oracle and/or its affiliates. All rights reserved."
12+
author = "Oracle"
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
@@ -23,7 +23,7 @@
2323
root_doc = master_doc = "index"
2424

2525

26-
templates_path = ['_templates']
26+
templates_path = ["_templates"]
2727
exclude_patterns = []
2828
global_vars = {}
2929
local_vars = {}
@@ -36,9 +36,8 @@
3636
release = local_vars["__version__"]
3737

3838

39-
4039
# -- Options for HTML output -------------------------------------------------
4140
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
4241

43-
html_theme = 'alabaster'
44-
html_static_path = ['_static']
42+
html_theme = "alabaster"
43+
html_static_path = ["_static"]

doc/source/user_guide/installation.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,3 @@ To use ``select_ai`` you need:
6565
.. code-block:: shell
6666
6767
Connected to the Database
68-
69-
70-

doc/source/user_guide/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ programming styles
1414
It uses the Python thin driver for Oracle database i.e. ``python-oracledb``
1515
to connect to the database and execute PL/SQL subprograms.
1616

17-
Currently supported Python versions are 3.9, 3.10, 3.11, 3.12 and 3.13.
17+
Currently supported Python versions are 3.9, 3.10, 3.11, 3.12 and 3.13.

src/select_ai/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from .version import __version__ as __version__
2-
31
from .action import Action
42
from .admin import (
53
create_credential,
@@ -39,3 +37,4 @@
3937
VectorIndex,
4038
VectorIndexAttributes,
4139
)
40+
from .version import __version__ as __version__

0 commit comments

Comments
 (0)