File: noqa.py

package info (click to toggle)
flake8-import-order 0.19.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 352 kB
  • sloc: python: 2,574; sh: 5; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 355 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# appnexus cryptography edited google pep8 smarkets
import ast

import sys  # noqa: I202

import os # noqa
import unittest
import X # noqa
from . import B, C, A  # I201 # noqa: I101

if TYPE_CHECKING:
    import ast

    import sys  # noqa: I202

    import os # noqa
    import unittest
    import X # noqa
    from . import B, C, A  # I201 # noqa: I101