Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typehint test #50

Merged
merged 4 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ delete the .rst file afterwards.
ssb\_konjunk package
====================

Submodules
----------

ssb\_konjunk.data\_formating module
-----------------------------------
Expand All @@ -34,18 +32,18 @@ ssb\_konjunk.fame module
:undoc-members:
:show-inheritance:

ssb\_konjunk.functions module
-----------------------------
ssb\_konjunk.prompts module
---------------------------

.. automodule:: ssb_konjunk.functions
.. automodule:: ssb_konjunk.prompts
:members:
:undoc-members:
:show-inheritance:

ssb\_konjunk.prompts module
---------------------------
ssb\_konjunk.saving module
--------------------------

.. automodule:: ssb_konjunk.prompts
.. automodule:: ssb_konjunk.saving
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ssb-konjunk"
version = "0.1.4"
version = "0.1.5"
description = "SSB Konjunk"
authors = ["Edvard Garmannslund <[email protected]>"]
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions src/ssb_konjunk/saving.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _remove_edge_slashes(input_string: str) -> str:


def _structure_ssb_filepath(
dates: tuple[int],
dates: tuple[int, ...],
frequency: str,
bucket: str,
statistic: str,
Expand Down Expand Up @@ -250,7 +250,7 @@ def _save_df(

def write_ssb_file(
df: pd.DataFrame,
dates: tuple[int],
dates: tuple[int, ...],
frequency: str,
bucket: str,
statistic: str,
Expand Down Expand Up @@ -311,7 +311,7 @@ def write_ssb_file(


def read_ssb_file(
dates: tuple[int],
dates: tuple[int, ...],
frequency: str,
bucket: str,
statistic: str,
Expand Down
Loading