Skip to content

Commit

Permalink
fix: add missing semicolon (#39)
Browse files Browse the repository at this point in the history
Fixes authorprefs and upgrade cryptography to latest to fix CI
  • Loading branch information
potatoeggy authored May 17, 2024
1 parent e4b0cd5 commit 7e0f052
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion efiction/eFiction_table_defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
`contact` tinyint(1) NOT NULL DEFAULT '0',
`stories` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`)
) ENGINE = MyISAM""",
) ENGINE = MyISAM;""",
"authors": """CREATE TABLE `{0}` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`penname` varchar(200) NOT NULL DEFAULT '',
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ colorama==0.4.4
colorlog==4.2.1
configparser==5.0.0
coverage==5.3
cryptography==3.2.1
cryptography==42.0.5
importlib-metadata==2.0.0
iniconfig==1.0.1
more-itertools==8.5.0
Expand Down

0 comments on commit 7e0f052

Please sign in to comment.