Skip to content

Commit 55b6f55

Browse files
committed
* isort and pylint disagrees on where to have the pylint options. This will likely break pylint but resolve the isort issue
1 parent 08e0c50 commit 55b6f55

File tree

1 file changed

+4
-4
lines changed
  • instrumentation/opentelemetry-instrumentation-psycopg/src/opentelemetry/instrumentation/psycopg

1 file changed

+4
-4
lines changed

instrumentation/opentelemetry-instrumentation-psycopg/src/opentelemetry/instrumentation/psycopg/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@
106106
from typing import Collection
107107

108108
import psycopg # pylint: disable=import-self
109-
from psycopg import ( # pylint: disable=import-self,no-name-in-module
110-
AsyncCursor as pg_async_cursor,
109+
from psycopg import (
110+
AsyncCursor as pg_async_cursor, # pylint: disable=import-self,no-name-in-module
111111
)
112-
from psycopg import ( # pylint: disable=no-name-in-module,import-self
113-
Cursor as pg_cursor,
112+
from psycopg import (
113+
Cursor as pg_cursor, # pylint: disable=no-name-in-module,import-self
114114
)
115115
from psycopg.sql import Composed # pylint: disable=no-name-in-module
116116

0 commit comments

Comments
 (0)