Browse Source

fix(onboarding-docs): Django snippet referencing Falcon (#63083)

- closes https://github.com/getsentry/sentry/issues/63079
ArthurKnaus 1 year ago
parent
commit
dc749c7c0f
1 changed files with 1 additions and 4 deletions
  1. 1 4
      static/app/gettingStartedDocs/python/django.tsx

+ 1 - 4
static/app/gettingStartedDocs/python/django.tsx

@@ -83,10 +83,7 @@ const onboarding: OnboardingConfig = {
       configurations: [
         {
           language: 'python',
-          code: `
-${getSdkSetupSnippet(params)}
-api = falcon.API()
-      `,
+          code: getSdkSetupSnippet(params),
         },
       ],
     },