Skip to content

Commit 945841f

Browse files
authored
upgrade code and fix typos (#159)
1 parent 8f33085 commit 945841f

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## v1.0.2 - unreleased
44

55
- Restore behavior of `FileContainer.search(key=None)` - passing `None` to `search` is ignored again [#143](https://github.com/mpytools/filefisher/issues/143).
6-
- Added `FileContainer.search_single` to search for _exacly_ one path in a `FileContainer` ([#158](https://github.com/mpytools/filefisher/pull/158)).
6+
- Added `FileContainer.search_single` to search for _exactly_ one path in a `FileContainer` ([#158](https://github.com/mpytools/filefisher/pull/158)).
77

88
## v1.0.1 - 16.01.205
99
This version patches a bug from v1.0.0. that broke `FileContainer.concat()`.

docs/source/conf.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@
3737

3838
project = "filefisher"
3939
copyright_year = datetime.date.today().year
40-
copyright = (
41-
f"(c) 2024-{copyright_year} Mathias Hauser"
42-
)
40+
copyright = f"(c) 2024-{copyright_year} Mathias Hauser"
4341

4442
authors = "Mathias Hauser"
4543
author = authors

filefisher/_filefinder.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
import os
55
import re
66
import warnings
7-
from typing import Any, Generator
7+
from typing import Any
8+
from collections.abc import Generator
89

910
import numpy as np
1011
import pandas as pd
@@ -98,7 +99,7 @@ def create_name(self, keys=None, **keys_kwargs) -> str:
9899
class _Finder(_FinderBase):
99100
def _create_condition_dict(self, **kwargs):
100101

101-
# add wildcard for all undefinded keys
102+
# add wildcard for all undefined keys
102103
cond_dict = dict.fromkeys(self.keys, "*")
103104
cond_dict.update(**kwargs)
104105

@@ -643,7 +644,7 @@ def combine_by_key(self, keys=None, sep="."):
643644
Returns
644645
-------
645646
pd.Series
646-
pd.Series with combined columns where the keys are seperated by `sep`.
647+
pd.Series with combined columns where the keys are separated by `sep`.
647648
648649
"""
649650
warnings.warn(
@@ -666,7 +667,7 @@ def _combine_by_keys(self, keys=None, sep="."):
666667
Returns
667668
-------
668669
pd.Series
669-
pd.Series with combined columns where the keys are seperated by `sep`.
670+
pd.Series with combined columns where the keys are separated by `sep`.
670671
671672
"""
672673

filefisher/tests/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import warnings
22
from contextlib import contextmanager
3-
from typing import Iterable
3+
from collections.abc import Iterable
44

55
import pandas as pd
66

filefisher/tests/test_filecontainer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,10 @@ def test_filecontainer_search_single(example_df, example_fc):
176176
with pytest.raises(ValueError, match="Found no paths"):
177177
example_fc.search_single()
178178

179-
with pytest.raises(ValueError, match="Found more than one \(5\) paths"):
179+
with pytest.raises(ValueError, match=r"Found more than one \(5\) paths"):
180180
example_fc.search_single(model=None)
181181

182-
with pytest.raises(ValueError, match="Found more than one \(2\) paths"):
182+
with pytest.raises(ValueError, match=r"Found more than one \(2\) paths"):
183183
example_fc.search_single(model="a")
184184

185185
result = example_fc.search_single(model="a", scen="h")

pyproject.toml

+7
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,10 @@ build-backend = "setuptools.build_meta"
88
[tool.setuptools_scm]
99
fallback_version = "999"
1010
version_scheme = "no-guess-dev"
11+
12+
[tool.typos]
13+
14+
[tool.typos.default]
15+
extend-ignore-identifiers-re = [
16+
"varn",
17+
]

0 commit comments

Comments
 (0)