Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
khoroshevskyi committed Dec 18, 2023
1 parent 460bfa2 commit 1dd9284
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bbconf/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.0a6"
__version__ = "0.4.0"
6 changes: 2 additions & 4 deletions bbconf/bbconf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
from logging import getLogger
from typing import List, Optional, Tuple, Union, Literal
from typing import List, Optional, Dict, Union, Literal
from textwrap import indent

import yacman
Expand Down Expand Up @@ -178,9 +178,7 @@ def _read_config_file(self, config_path: str) -> dict:

def search_bed_by_text(
self, query: str
) -> Tuple[
Union[List[int], List[List[int]]], Union[List[float], List[List[float]]]
]:
) -> List[Dict[str, Union[int, float, Dict[str, str], List[float]]]]:
"""
Search for bed files by text query in the qdrant database
Expand Down

0 comments on commit 1dd9284

Please sign in to comment.