Skip to content

Commit 9fac27c

Browse files
remove __all__ because there are no * imports
1 parent e558bb2 commit 9fac27c

34 files changed

Lines changed: 0 additions & 72 deletions

sifter/commands/discard.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
from sifter.grammar.string import String
1919
from sifter.grammar.test import Test
2020

21-
__all__ = ('CommandDiscard',)
22-
2321

2422
# section 4.4
2523
class CommandDiscard(Command):

sifter/commands/fileinto.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
from sifter.grammar.string import String
2020
from sifter.grammar.test import Test
2121

22-
__all__ = ('CommandFileInto',)
23-
2422

2523
# section 4.1
2624
class CommandFileInto(Command):

sifter/commands/if_cmd.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
from sifter.grammar.string import String
1919
from sifter.grammar.test import Test
2020

21-
__all__ = ('CommandIf', 'CommandElsIf', 'CommandElse',)
22-
2321

2422
# section 3.1
2523
class CommandIfBase(Command):

sifter/commands/keep.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
from sifter.grammar.test import Test
2020

2121

22-
__all__ = ('CommandKeep',)
23-
24-
2522
# section 4.3
2623
class CommandKeep(Command):
2724

sifter/commands/redirect.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
from sifter.grammar.string import String
2222
from sifter.grammar.test import Test
2323

24-
__all__ = ('CommandRedirect',)
25-
2624

2725
# section 4.2
2826
class CommandRedirect(Command):

sifter/commands/require.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
from sifter.grammar.string import String
2222
from sifter.grammar.test import Test
2323

24-
__all__ = ('CommandRequire',)
25-
2624

2725
# section 3.2
2826
class CommandRequire(Command):

sifter/commands/stop.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
from sifter.grammar.string import String
1919
from sifter.grammar.test import Test
2020

21-
__all__ = ('CommandStop',)
22-
2321

2422
# section 3.3
2523
class CommandStop(Command):

sifter/comparator.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
from sifter.grammar.tag import Tag
1616
from sifter.grammar.state import EvaluationState
1717

18-
__all__ = ('register', 'get_match_fn',)
19-
2018

2119
def register(comparator_name: Optional[Text], comparator_cls: Type['Comparator']) -> None:
2220
sifter.handler.register('comparator', comparator_name, comparator_cls)

sifter/comparators/ascii_casemap.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
maketrans = str.maketrans
55

6-
__all__ = ('ComparatorASCIICasemap',)
7-
86

97
class ComparatorASCIICasemap(ComparatorOctet):
108

sifter/comparators/octet.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
from sifter.grammar.comparator import Comparator
99
from sifter.grammar.state import EvaluationState
1010

11-
__all__ = ('ComparatorOctet',)
12-
1311

1412
class ComparatorOctet(Comparator):
1513

0 commit comments

Comments
 (0)