Skip to content
This repository has been archived by the owner on Oct 7, 2023. It is now read-only.

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshKarpel committed Sep 12, 2020
1 parent 5ce8dd4 commit e90de12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
13 changes: 2 additions & 11 deletions dis_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,7 @@ def make_instruction_row(


def make_blank_instruction_rows(n: int) -> List[T_INSTRUCTION_ROW]:
return [
(
Text(),
Text(),
Text(),
Text(),
)
] * n
return [(Text(), Text(), Text(), Text())] * n


def find_jump_colors(instructions: List[dis.Instruction]) -> T_JUMP_COLORS:
Expand Down Expand Up @@ -214,9 +207,7 @@ def make_nums_block(nums: str) -> Text:


def make_source_block(
code_lines: List[str],
block_width: int,
theme: Optional[str] = None,
code_lines: List[str], block_width: int, theme: Optional[str] = None,
) -> Syntax:
code_lines = textwrap.dedent("\n".join(code_lines)).splitlines()
code_lines = [
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = dis_cli
version = 0.1.0
version = 0.1.1
description = A tool to inspect disassembled Python code on the command line.
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit e90de12

Please sign in to comment.