Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
|
@@ -81,6 +81,12 @@ async def add_exp_hub(ctx):
|
|
| 81 |
print(f"add_exp_hub Error: {e}")
|
| 82 |
|
| 83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
@bot.command(name='check')
|
| 85 |
async def check(ctx):
|
| 86 |
try:
|
|
|
|
| 81 |
print(f"add_exp_hub Error: {e}")
|
| 82 |
|
| 83 |
|
| 84 |
+
@bot.command(name='get_cell_value')
|
| 85 |
+
async def get_cell_value(ctx, row, col):
|
| 86 |
+
cell = worksheet2.cell(row, col)
|
| 87 |
+
print cell.value
|
| 88 |
+
|
| 89 |
+
|
| 90 |
@bot.command(name='check')
|
| 91 |
async def check(ctx):
|
| 92 |
try:
|