Skip to content

Files

Latest commit

 

History

History
8 lines (5 loc) · 325 Bytes

relative-beyond-top-level.md

File metadata and controls

8 lines (5 loc) · 325 Bytes

Pattern: Attempted relative import beyond top-level package

Issue: -

Description

Used when a relative import tries to access too many levels in the current package. For instance, if a package has X levels, trying to climb X + n levels with a relative import, as in from ..stuff import Stuff, will result in an error.