Skip to content

Commit 6a415fc

Browse files
author
Jordan Mance
committed
Fixing issue with build.
1 parent 2e99064 commit 6a415fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
2727
- name: Upload To PyPi
2828
env:
29-
PYPI_RC: ${{ secrets.PYPI_FIGGY_CLI }}
29+
PYPI_RC: ${{ secrets.PYPI_RC }}
3030
run: |
3131
echo "${PYPI_RC}" > ~/.pypirc
3232
cd src

src/figgy/figs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def value(self, value):
7878
self._value = value
7979

8080
def __str__(self):
81-
return self.value if self.value else FIG_MISSING
81+
return self.value
8282

8383

8484
class AppFig(Fig):

0 commit comments

Comments
 (0)