Skip to content

Commit

Permalink
Quote pd.DataFrame and fix wrong indent
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusWirtz committed Oct 16, 2023
1 parent 29eb9ee commit 6947bd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion TM1py/Services/CellService.py
Original file line number Diff line number Diff line change
Expand Up @@ -2914,7 +2914,8 @@ def extract_cellset_partition(self, cellset_id: str,
skip_zeros: bool = False,
skip_consolidated_cells: bool = False,
skip_rule_derived_cells: bool = False,
sandbox_name: str = None) -> object: """
sandbox_name: str = None) -> Dict:
"""
Method to extract a cellset partition. Cellset partitions are a collection of cellset cells where they have
a defined top left boundary, and bottom right boundary.
Read More: https://www.ibm.com/docs/en/planning-analytics/2.0.0?topic=data-cellsets#dg_tm1_odata_get_cells__title__1
Expand Down
2 changes: 1 addition & 1 deletion TM1py/Services/HierarchyService.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def update_or_create_hierarchy_from_dataframe(
self,
dimension_name: str,
hierarchy_name: str,
df: pd.DataFrame,
df: 'pd.DataFrame',
element_column: str = None,
verify_unique_elements: bool = False,
verify_edges: bool = True,
Expand Down

0 comments on commit 6947bd5

Please sign in to comment.