Skip to content

Commit fc30c31

Browse files
author
Lucas Fonseca
authored
Enhance log, remove unecessary text (#22)
1 parent 30f6bfe commit fc30c31

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.github/pull-request-template.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,10 @@ _Want to add some awesome bullet points?_
1010
- _Second changes;_
1111
- _..._
1212

13-
_Want to add some cool checkboxes?_
14-
- [X] _First changes;_
15-
- [X] _Second changes;_
16-
- [ ] _..._
17-
1813
## Type of change :file_cabinet:
1914
_Please delete options that are not relevant._
2015

21-
- [ ] Bug fix (non-breaking change which fixes an issue)
16+
- [ ] Fix (non-breaking change which fixes an issue)
2217
- [ ] New feature (non-breaking change which adds functionality)
2318
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
2419
- [ ] Documentation

hierarchical_conf/hierarchical_conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def _configuration_files(self, configuration_files: List[str]) -> None:
3737
"""_configuration_files setter."""
3838
if not configuration_files:
3939
raise FileNotFoundError(
40-
f"given_paths={configuration_files}, "
4140
"msg=No configuration file(s) found in the path(s) specified."
4241
)
4342
self.__configuration_files = configuration_files

tests/unit/test_hierarchical_conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def test_invalid_configuration_files(self):
157157
HierarchicalConf(searched_paths=[])
158158
assert (
159159
str(e.value)
160-
== "given_paths=[], msg=No configuration file(s) found in the path(s) specified."
160+
== "msg=No configuration file(s) found in the path(s) specified."
161161
)
162162

163163
def test_deep_update(self, hierarchical_conf):

0 commit comments

Comments
 (0)