Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaCappelletti94 committed Jul 22, 2024
1 parent 066e649 commit 3c85e61
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
5 changes: 2 additions & 3 deletions csv_trimming/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Package for cleaning & trimming CSV files."""

from csv_trimming.trim import CSVTrimmer

__all__ = [
"CSVTrimmer"
]
__all__ = ["CSVTrimmer"]
3 changes: 2 additions & 1 deletion csv_trimming/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
"""Current version of package csv_trimming"""
__version__ = "1.0.11"

__version__ = "1.1.0"
9 changes: 5 additions & 4 deletions csv_trimming/logger.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
"""Submodule for setting up the logger for the csv_trimming package."""

import sys
import logging

# Create the logger
logger = logging.getLogger(__name__)
# Change the levels names to that they are 4 chars long
logging.addLevelName(logging.DEBUG, 'DEBG')
logging.addLevelName(logging.WARNING, 'WARN')
logging.addLevelName(logging.ERROR, 'ERRO')
logging.addLevelName(logging.CRITICAL, 'CRIT')
logging.addLevelName(logging.DEBUG, "DEBG")
logging.addLevelName(logging.WARNING, "WARN")
logging.addLevelName(logging.ERROR, "ERRO")
logging.addLevelName(logging.CRITICAL, "CRIT")
# Set the default log level
logger.setLevel(logging.INFO)
# Set the format of the loger
Expand Down

0 comments on commit 3c85e61

Please sign in to comment.