Skip to content

Commit e987e56

Browse files
committed
comment temporarly horizontal alignment
1 parent f5a6b2e commit e987e56

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<img height="100px" src="https://www.gstatic.com/images/icons/material/system/1x/pets_black_48dp.png">
44
</p>
55

6-
<p align="center"> Your library to help you to <br><b>Build Google Workspace add-ons in Python 🐍 !!!</b>
6+
<h5 align="center"> Your opensource library for helping you to <br><b>Build Google Workspace add-ons in Python 🐍 !!!</b></h5>
77

88
<p align="center">
99
***
@@ -14,9 +14,7 @@
1414
| Addons | App Script Styple | Pythonic Style |
1515
:-------------------------:|:-------------------------:|:-------------------------:|
1616
![](https://developers.google.com/apps-script/add-ons/images/workspace-addons-cats.png) | ![](docs/source/_static/images/code_app_script_style.png?raw=true) | ![](docs/source/_static/images/code_python_style.png?raw=true) |
17-
| ```python
18-
import os
19-
os.path | | |
17+
2018

2119

2220
<table>

gapps/cardservice/api.py

+4
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,10 @@ class Button:
188188
class ButtonSet:
189189
button: list[Button] = field(metadata=config(field_name="buttons"),
190190
default=None)
191+
# horizontal_alignment: HorizontalAlignment = field(
192+
# metadata=config(encoder=lambda x: x.value,
193+
# decoder=HorizontalAlignment),
194+
# default=HorizontalAlignment.START)
191195

192196
def field_name(self):
193197
"""Return and override classname."""

0 commit comments

Comments
 (0)