File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ def lookup_table(
272
272
273
273
def dedup (iterable : Iterable [_T ]) -> Iterable [_T ]:
274
274
"""
275
- Deduplicate an iterable object like iter(set(iterable)) but
275
+ Deduplicate an iterable object like `` iter(set(iterable))`` but
276
276
order-preserved.
277
277
"""
278
278
return iter (dict .fromkeys (iterable ))
@@ -544,7 +544,7 @@ def override_defaults_from_config_file(
544
544
file, returning the ``pathlib.Path`` of that config file if specified or
545
545
discovered.
546
546
547
- :returns: :py:data:`None` if no such file is found.
547
+ :returns: :py:data:`None` if no such file is found, else returns the path .
548
548
549
549
``pip-tools`` will use the first config file found, searching in this order:
550
550
an explicitly given config file, a ``.pip-tools.toml``, a ``pyproject.toml``
You can’t perform that action at this time.
0 commit comments