Skip to content

Commit 99b21a5

Browse files
author
Thomas Preud'homme
committed
Fix space before typing comments
Fix Flake8's E261 error (at least two spaces before inline comments) introduced by earlier 042938b commit. Reviewed By: tnfchris Differential Revision: https://reviews.llvm.org/D94790
1 parent 0b2c5df commit 99b21a5

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

lnt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
except Exception:
1111
pass
1212

13-
__all__ = [] # type: Sequence[str]
13+
__all__ = [] # type: Sequence[str]

lnt/server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from typing import Sequence
22

3-
__all__ = [] # type: Sequence[str]
3+
__all__ = [] # type: Sequence[str]

lnt/server/db/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from typing import Sequence
22

3-
__all__ = [] # type: Sequence[str]
3+
__all__ = [] # type: Sequence[str]

lnt/server/db/rules/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from typing import Sequence
22

3-
__all__ = [] # type: Sequence[str]
3+
__all__ = [] # type: Sequence[str]

lnt/server/reporting/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from typing import Sequence
22

3-
__all__ = [] # type: Sequence[str]
3+
__all__ = [] # type: Sequence[str]

lnt/server/ui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from typing import Sequence
22

3-
__all__ = [] # type: Sequence[str]
3+
__all__ = [] # type: Sequence[str]

lnt/testing/util/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
from typing import Sequence
66

7-
__all__ = [] # type: Sequence[str]
7+
__all__ = [] # type: Sequence[str]

lnt/util/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
logger = logging.getLogger("lnt.server.ui.app")
55

6-
__all__ = [] # type: Sequence[str]
6+
__all__ = [] # type: Sequence[str]

0 commit comments

Comments
 (0)