Skip to content

Commit

Permalink
fixed issue #17
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor committed Nov 27, 2024
1 parent e014a29 commit ff68e2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sqlalchemy_iris/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def process(value):


class IRISTimeStamp(sqltypes.DateTime):
__visit_name__ = "timestamp"
__visit_name__ = "TIMESTAMP"

def bind_processor(self, dialect):
def process(value: datetime.datetime):
Expand Down Expand Up @@ -86,7 +86,7 @@ def process(value):


class IRISDateTime(sqltypes.DateTime):
__visit_name__ = "datetime"
__visit_name__ = "DATETIME"

def bind_processor(self, dialect):
def process(value):
Expand All @@ -110,7 +110,7 @@ def process(value):


class IRISTime(sqltypes.DateTime):
__visit_name__ = "time"
__visit_name__ = "TIME"

def bind_processor(self, dialect):
def process(value):
Expand Down

0 comments on commit ff68e2c

Please sign in to comment.