Skip to content

Commit

Permalink
👹 Feed the hobgoblins (delint).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jun 17, 2024
1 parent 6c38804 commit 3a0685d
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import pytest


if sys.version_info < (3, 10):
import pathlib2 as pathlib # pragma: nocover
else:
Expand Down
6 changes: 3 additions & 3 deletions jaraco/text/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import re
import functools
import itertools
import re
import textwrap
import functools

try:
from importlib.resources import files # type: ignore
except ImportError: # pragma: nocover
from importlib_resources import files # type: ignore

from jaraco.functools import compose, method_cache
from jaraco.context import ExceptionTrap
from jaraco.functools import compose, method_cache


def substitution(old, new):
Expand Down
1 change: 0 additions & 1 deletion jaraco/text/show-newlines.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import autocommand
import inflect

from more_itertools import always_iterable

import jaraco.text
Expand Down
1 change: 0 additions & 1 deletion jaraco/text/to-dvorak.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

from . import layouts


__name__ == '__main__' and layouts._translate_stream(sys.stdin, layouts.to_dvorak)
1 change: 0 additions & 1 deletion jaraco/text/to-qwerty.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

from . import layouts


__name__ == '__main__' and layouts._translate_stream(sys.stdin, layouts.to_qwerty)

0 comments on commit 3a0685d

Please sign in to comment.