Skip to content

Commit

Permalink
Reformat and add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Mar 14, 2024
1 parent f0369ea commit 8f19b0f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@
- Update abatilo/actions-poetry from `v2.1.4` to `v3.0.0`
- Update actions/setup-python from `v2` to `v5`
- Added build system section to project `pyproject.toml`
- Restrcutre bucketfs package
4 changes: 3 additions & 1 deletion doc/examples/logger.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import logging

from exasol.bucketfs import Service

logging.basicConfig(level=logging.INFO)

# Advanced Logging
import logging

from exasol.bucketfs import Service

# Attention:
Expand All @@ -16,7 +18,7 @@
# Explicityly Configure the bucketfs logger if you need to.
#
# 1. Get a reference to the bucketfs logger
bucketfs_logger = logging.getLogger('exasol.bucketfs')
bucketfs_logger = logging.getLogger("exasol.bucketfs")

# 2. Configure the bucketfs logger as needed
# Note:
Expand Down
2 changes: 2 additions & 0 deletions exasol/bucketfs/_buckets.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from typing import (
BinaryIO,
ByteString,
Expand Down
2 changes: 2 additions & 0 deletions exasol/bucketfs/_shared.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from urllib.parse import urlparse

from exasol.bucketfs._error import BucketFsError
Expand Down

0 comments on commit 8f19b0f

Please sign in to comment.