Skip to content

Commit

Permalink
Merge pull request #50 from statisticsnorway/fix_typehint_test
Browse files Browse the repository at this point in the history
Fix typehint test
  • Loading branch information
LBiermann-ssb authored Aug 21, 2024
2 parents 5a5d9c9 + 5f38744 commit d54c964
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
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

0 comments on commit d54c964

Please sign in to comment.