File: .flake8

package info (click to toggle)
sugar-jukebox-activity 36-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 508 kB
  • sloc: python: 1,004; makefile: 14; sh: 4
file content (10 lines) | stat: -rw-r--r-- 281 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
[flake8]

# E402 module level import not at top of file
# gi.require_version() is required before later imports

# F401 imported but unused
# imports have a side-effect without being used
# GstVideo and GdkX11 are needed by GStreamer for prepare-window-handler

ignore = E402,F401