File: attr_import_star.py

package info (click to toggle)
python-attrs 25.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,456 kB
  • sloc: python: 11,214; makefile: 153
file content (9 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (12)
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.