Skip to content

Commit

Permalink
Merge pull request #42 from billsioros/feat!/opt-for-functions-instea…
Browse files Browse the repository at this point in the history
…d-of-classes

feat!: opt for functions instead of classes
  • Loading branch information
billsioros authored Mar 9, 2024
2 parents ecaff22 + 4086a8a commit f083254
Show file tree
Hide file tree
Showing 6 changed files with 883 additions and 575 deletions.
2 changes: 1 addition & 1 deletion docs/src/querpyable.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
::: querpyable.querpyable
::: querpyable.querpyable.Queryable
16 changes: 8 additions & 8 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ copyright: |
Copyright &copy; 2024-2024 <a href="https://github.com/billsioros" target="_blank" rel="noopener">Vasilis Sioros</a>
nav:
- Overview: index.md
- Code Reference:
- Querpyable: src/querpyable.md
- Code Reference: src/querpyable.md
- Contributing:
- Contributing Guidelines: CONTRIBUTING.md
- Code Of Conduct: CODE_OF_CONDUCT.md
Expand Down Expand Up @@ -63,21 +62,22 @@ plugins:
python:
paths:
- src
rendering:
show_source: true
options:
show_source: false
docstring_style: google
docstring_options:
ignore_init_summary: yes
merge_init_into_class: yes
show_submodules: no
docstring_options:
ignore_init_summary: yes
show_submodules: no
- minify:
minify_html: true
markdown_extensions:
- admonition
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.highlight
- pymdownx.highlight:
use_pygments: true
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ source = ["querpyable"]

[tool.coverage.report]
show_missing = true
fail_under = 70
fail_under = 65
exclude_lines = [
"if self.debug:",
"pragma: no cover",
Expand Down
4 changes: 4 additions & 0 deletions src/querpyable/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
"""A Python implementation of LINQ."""

from querpyable.querpyable import Queryable

__all__ = ["Queryable"]
Loading

0 comments on commit f083254

Please sign in to comment.