File: stdlib_shadowing.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 (7 lines) | stat: -rw-r--r-- 220 bytes parent folder | download
1
2
3
4
5
6
7
# appnexus cryptography google pep8 smarkets
from .filesystem import FilesystemStorage
from os import path # I100 I201

if TYPE_CHECKING:
    from .filesystem import FilesystemStorage
    from os import path # I100 I201