Skip to content

Commit 083c598

Browse files
authored
Fix mypy errors
1 parent d7b35ed commit 083c598

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ddtrace/_monkey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,6 @@ def _attempt_patch_module(module):
271271
"%s.patch is not found. '%s' is not configured for this environment" % (path, module)
272272
)
273273

274-
imported_module.patch() # type: ignore
274+
imported_module.patch()
275275
_PATCHED_MODULES.add(module)
276276
return True

ddtrace/profiling/exporter/pprof_pb2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# type: ignore[attr-defined,call-arg]
1+
# type: ignore
22

33
# -*- coding: utf-8 -*-
44
# Generated by the protocol buffer compiler. DO NOT EDIT!

0 commit comments

Comments
 (0)