Skip to content

Commit

Permalink
Removed warning log (#29)
Browse files Browse the repository at this point in the history
* Removed warning log

* Upgraded version to 1.0.3

---------

Co-authored-by: Eduardo Trevisani <[email protected]>
  • Loading branch information
dutrevis and Eduardo Trevisani authored Jun 14, 2023
1 parent 8e038fc commit 5613850
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
5 changes: 0 additions & 5 deletions hierarchical_conf/hierarchical_conf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Hierarchical Conf main class."""
import logging
import os
from collections.abc import Mapping
from os.path import isfile
Expand Down Expand Up @@ -86,10 +85,6 @@ def _config_file_exists(config_file_path: str) -> bool:
if isfile(config_file_path):
return True

logging.warning(
f"msg=This configuration file was not found in the given path,"
f"file={config_file_path}"
)
return False

@staticmethod
Expand Down
9 changes: 2 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

__package_name__ = "hierarchical_conf"
__version__ = "1.0.2"
__version__ = "1.0.3"
__repository_url__ = "https://github.com/quintoandar/hierarchical-conf"


Expand All @@ -28,12 +28,7 @@
],
version=__version__,
url=__repository_url__,
packages=find_packages(
include=[
"hierarchical_conf",
"hierarchical_conf.*",
]
),
packages=find_packages(include=["hierarchical_conf", "hierarchical_conf.*"]),
author="QuintoAndar",
install_requires=requirements,
python_requires=">=3.7, <4",
Expand Down

0 comments on commit 5613850

Please sign in to comment.