Skip to content

Commit

Permalink
pushing up
Browse files Browse the repository at this point in the history
  • Loading branch information
nguzinski committed Oct 21, 2024
1 parent 5984479 commit 2a83956
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/PythonClient/multirotor/airsim_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AirSimApplication:
# Parent class for all airsim client side mission and monitors
def __init__(self):
#implementation of the GCS service
self.gcs = GCSStorageService('droneworld')
self.storage_service = GCSStorageService('droneworld')

self.circular_mission_names = {"FlyInCircle"}
self.polygon_mission_names = {"FlyToPoints", "FlyToPointsGeo"}
Expand Down Expand Up @@ -65,7 +65,7 @@ def save_report(self):

def upload_to_gcs(self, file_name, content):
#uses the concrete of
self.gcs.uploadToService(file_name,content)
self.storage_service.uploadToService(file_name,content)


def save_pic(self, picture):
Expand Down

0 comments on commit 2a83956

Please sign in to comment.