Skip to content

Commit

Permalink
Remove debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
kannibalox committed Aug 1, 2023
1 parent efff649 commit 76b1cc5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

### Fixed

- Remove debugging statements

## [2.10.1] - 2023-07-28

### Fixed

- `rtcontrol`: Fix `--json` error

## [2.10.0] - 2023-07-24
Expand Down
3 changes: 0 additions & 3 deletions src/pyrosimple/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ def expand_rc(rcfile: Path) -> List[Tuple[str, str]]:
if priv_string_match:
str_result = ""
for arg in RCLexer(priv_string_match.group(2)):
print(arg)
if arg.startswith("("):
str_result += replacements.get(arg[1:-1], "")
if arg.startswith('"'):
Expand All @@ -155,8 +154,6 @@ def expand_rc(rcfile: Path) -> List[Tuple[str, str]]:
str_result += arg[1:-1]
val = str_result
data.append((key, val))
print(key, val)
print(replacements)
return data


Expand Down

0 comments on commit 76b1cc5

Please sign in to comment.