Skip to content

Commit

Permalink
FIX: flake8 and once again, .app validation
Browse files Browse the repository at this point in the history
  • Loading branch information
bcorfman committed Mar 28, 2021
1 parent 2985348 commit c886adc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos-notarize-app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ do
done

# Staple the notary ticket
xcrun stapler staple -v "./dist/$APP_BUNDLE"
xcrun stapler staple -v "./dist/$APP_BUNDLE.app"
6 changes: 2 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
try:
from version import VERSION, BUILD_NUMBER
except ImportError:
VERSION = ''
BUILD_NUMBER = ''
VERSION = ''
BUILD_NUMBER = ''


if __name__ == '__main__':
Expand All @@ -23,5 +23,3 @@
else:
adventure = Adventure()
adventure.start_console()


0 comments on commit c886adc

Please sign in to comment.