Skip to content

Commit

Permalink
Fixed extra line break in Windows with ov module info.
Browse files Browse the repository at this point in the history
  • Loading branch information
rkimoakbioinformatics committed Dec 3, 2023
1 parent a598fc9 commit 50d9ed9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion oakvar/cli/module/info_fn.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,12 @@

def print_module_info(module_info={}, outer=None):
from rich.console import Console
from .. import CliOuter

console = Console(file=outer)
if isinstance(outer, CliOuter):
console = outer.out_writer
else:
console = Console(file=outer)
readme_table = get_module_info_readme_table(module_info=module_info)
basic_table = get_module_info_basic_table(module_info=module_info)
developer_table = get_module_info_developer_table(module_info=module_info)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def walk_and_add(d, pkg_files):
walk_and_add("cravat", cravat_files)
setup(
name="oakvar",
version="2.9.68",
version="2.9.69",
description="A genomic variant analysis platform",
long_description=long_description,
long_description_content_type="text/x-rst",
Expand Down

0 comments on commit 50d9ed9

Please sign in to comment.