changed 'get_data' docstring

This commit is contained in:
Jakub Trllo 2022-08-08 17:48:14 +02:00
parent 5d0cd42a81
commit 7e8e61c0e4

View file

@ -537,10 +537,12 @@ class AbstractPlaceholder:
pass
@abstractmethod
def get_data(self, node):
"""
Collect placeholders information.
def get_data(self, identifier):
"""Collect information about placeholder by identifier.
Args:
node (AnyNode): A unique node decided by Placeholder implementation
identifier (str): A unique placeholder identifier defined by
implementation.
"""
pass