Description
Description of the problem, including code/CLI snippet
The ProjectFile
class lacks a class variable named content, as described in the documentation. This omission results in the absence of autocomplete support for this specific field, which is inconsistent with the documented behavior.
According to the documentation, the ProjectFile
class should contain a class variable named content
. However, upon inspection of the codebase, it appears that this variable is missing. As a consequence, when utilizing IDEs or code editors with autocomplete features, users are unable to benefit from autocomplete support for the content field within the ProjectFile
class.
Expected Behavior
The ProjectFile
class should include a class variable named content
, as documented. This variable should be accessible and provide autocomplete support for users working with the class in various IDEs or code editors.
Actual Behavior
- Navigate to the
ProjectFile
class definition. - Attempt to access the
content
class variable or utilize autocomplete features for this field.
Specifications
- python-gitlab-4.4.0
- Visual Studio Code 1.86.2
- python 3.11.5