diff options
| author | 2024-11-17 09:49:08 +0800 | |
|---|---|---|
| committer | 2024-11-17 09:49:08 +0800 | |
| commit | b1294e435e5660f177a88b746f360a6b803a8fc2 (patch) | |
| tree | cce9cd3a2d2f8bf551543c4ad7eb560d0be2d1b4 | |
| parent | c7280dbd426153e9c2d8f3d0882f56bc4fe4f466 (diff) | |
| download | HydroRoll-b1294e435e5660f177a88b746f360a6b803a8fc2.tar.gz HydroRoll-b1294e435e5660f177a88b746f360a6b803a8fc2.zip | |
refactor(conf.py): Split import statements for clarity
| -rw-r--r-- | docs/source/conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index f842c5e..010a447 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -3,7 +3,8 @@ # For the full list of built-in configuration values, see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html -import os, sys +import os +import sys if sys.version_info >= (3, 11): import tomllib |
