diff options
author | BonfaceKilz | 2022-01-05 17:01:37 +0300 |
---|---|---|
committer | GitHub | 2022-01-05 17:01:37 +0300 |
commit | bbd088c6aa26549d2e6b063c8d99492cb6fc33f5 (patch) | |
tree | 62ed5cae507303a469c040eb47a8b5b70b3a1a93 /gn3/authentication.py | |
parent | af52afa4318feadfa3cd1cc4dcdd3d86907f68a4 (diff) | |
parent | 0b1643e87cf4303db3673dcf3cf240aeb4d518cb (diff) | |
download | genenetwork3-bbd088c6aa26549d2e6b063c8d99492cb6fc33f5.tar.gz |
Merge pull request #69 from genenetwork/fix/check-for-duplicates-before-deletions-or-insertions
Fix/check for duplicates before deletions or insertions
Diffstat (limited to 'gn3/authentication.py')
-rw-r--r-- | gn3/authentication.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gn3/authentication.py b/gn3/authentication.py index 4aedacd..d0b35bc 100644 --- a/gn3/authentication.py +++ b/gn3/authentication.py @@ -163,8 +163,4 @@ def create_group(conn: Redis, group_name: Optional[str], } conn.hset("groups", group_id, json.dumps(group)) return group - # This might break stuff, but it fixes the linting error regarding - # inconsistent return types. - # @BonfaceKilz please review this and replace with appropriate return and - # remove these comments. return None |