Skip to content

Commit

Permalink
Fixed future warning for pandas
Browse files Browse the repository at this point in the history
PAtched issue from this thread jbkinney#36
  • Loading branch information
arivers authored Nov 26, 2024
1 parent 76aae02 commit 8d836da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logomaker/src/Logo.py
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@ def _compute_glyphs(self):
Specifies the placement and styling of all glyphs within the logo.
"""
# Create a dataframe of glyphs
glyph_df = pd.DataFrame()
glyph_df = pd.DataFrame(index=self.ps,columns=self.cs,dtype=object)

# For each position
for p in self.ps:
Expand Down

0 comments on commit 8d836da

Please sign in to comment.