Fix spelling mistakes

This commit is contained in:
Joakim Hellsén 2025-07-30 19:27:25 +02:00
commit ad0bab1cdc

View file

@ -168,11 +168,11 @@ class Command(BaseCommand):
Args: Args:
campaign_data: The drop campaign data to import. campaign_data: The drop campaign data to import.
game: The game this drop campaing is for. game: The game this drop campaign is for.
organization: The company that owns the game. organization: The company that owns the game.
Returns: Returns:
Returns the DropCampaing object. Returns the DropCampaign object.
""" """
drop_campaign, created = DropCampaign.objects.update_or_create( drop_campaign, created = DropCampaign.objects.update_or_create(
id=campaign_data["id"], id=campaign_data["id"],
@ -194,7 +194,7 @@ class Command(BaseCommand):
return drop_campaign return drop_campaign
def owner_update_or_create(self, campaign_data: dict[str, Any]) -> Organization: def owner_update_or_create(self, campaign_data: dict[str, Any]) -> Organization:
"""Update or create an orgnization. """Update or create an organization.
Args: Args:
campaign_data: The drop campaign data to import. campaign_data: The drop campaign data to import.