Skip to content

Commit

Permalink
Fix E226 missing whitespace around arithmetic operator PEP8 failure (
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 authored May 27, 2024
1 parent 44ff971 commit e87475e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildozer/targets/osx.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def download_kivy(self, cwd):
self.logger.info('Extracting and installing Kivy...')
check_call(('hdiutil', 'attach', cwd + '/Kivy.dmg'))
buildops.file_copytree(
'/Volumes/Kivy/Kivy.app', cwd+'/Kivy.app')
'/Volumes/Kivy/Kivy.app', cwd + '/Kivy.app'
)

def ensure_kivyapp(self):
self.logger.info('check if Kivy.app exists in local dir')
Expand Down

0 comments on commit e87475e

Please sign in to comment.