We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c589c35 commit 176e51cCopy full SHA for 176e51c
pandas/formats/format.py
@@ -1839,7 +1839,7 @@ def remove_none(d):
1839
}
1840
1841
def build_alignment(self, props):
1842
- # TODO: text-indent -> alignment.indent
+ # TODO: text-indent, margin-left -> alignment.indent
1843
return {'horizontal': props.get('text-align'),
1844
'vertical': self.VERTICAL_MAP.get(props.get('vertical-align')),
1845
'wrapText': (props['white-space'] not in (None, 'nowrap')
@@ -1971,7 +1971,7 @@ def color_to_excel(self, val):
1971
'q': ('mm', .25),
1972
1973
1974
- FONT_SIZE_CONVERSIONS = unit_conversions.copy()
+ FONT_SIZE_CONVERSIONS = UNIT_CONVERSIONS.copy()
1975
FONT_SIZE_CONVERSIONS.update({
1976
'%': ('em', 1),
1977
'xx-small': ('rem', .5),
0 commit comments