File: attr_import_star.py

package info (click to toggle)
python-attrs 25.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,004 kB
  • sloc: python: 10,495; makefile: 153
file content (9 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
# SPDX-License-Identifier: MIT


from attr import *  # noqa: F403


# This is imported by test_import::test_from_attr_import_star; this must
# be done indirectly because importing * is only allowed on module level,
# so can't be done inside a test.