Skip to content

Commit

Permalink
make mypy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
andehen committed Dec 19, 2024
1 parent 1aaa5b5 commit 8da095e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions posthog/management/commands/generate_experiment_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import logging
import random
import time
from typing import Literal
import uuid
import json

Expand Down Expand Up @@ -77,7 +76,7 @@ def get_default_trend_experiment_config() -> ExperimentConfig:
)


def get_default_config(type: Literal["funnel", "trend"]) -> ExperimentConfig:
def get_default_config(type) -> ExperimentConfig:
match type:
case "funnel":
return get_default_funnel_experiment_config()
Expand Down

0 comments on commit 8da095e

Please sign in to comment.