Skip to content

Commit

Permalink
Restore backward compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Dec 1, 2023
1 parent ae592d7 commit c9dd26f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simplesqlite/_column.py
Expand Up @@ -20,14 +20,14 @@ def not_null(self) -> bool:

def __init__(
self,
name: Optional[str] = None,
attr_name: Optional[str] = None,
not_null: bool = False,
primary_key: bool = False,
unique: bool = False,
autoincrement: bool = False,
default: Any = None,
) -> None:
self.__column_name = name
self.__column_name = attr_name
self.__not_null = not_null
self.__primary_key = primary_key
self.__unique = unique
Expand Down

0 comments on commit c9dd26f

Please sign in to comment.