Skip to content

Commit f471175

Browse files
committed
vscode settings updated
1 parent c8c64fa commit f471175

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.vscode/settings.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
{
22
"python.testing.pytestArgs": [],
33
"python.testing.unittestEnabled": false,
4-
"python.testing.pytestEnabled": true,
5-
"python.linting.flake8Enabled": true,
6-
"python.linting.flake8Args": [
7-
"--max-line-length=120"
8-
],
9-
"python.linting.enabled": true
4+
"python.testing.pytestEnabled": true
105
}

sqlalchemy_iris/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ def visit_TINYINT(self, type_, **kw):
750750
return "TINYINT"
751751

752752
def visit_UUID(self, type_, **kw):
753-
return "%UniqueIdentifier"
753+
return "UNIQUEIDENTIFIER"
754754

755755

756756
class IRISIdentifierPreparer(sql.compiler.IdentifierPreparer):

0 commit comments

Comments
 (0)