diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 17:55:15 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 17:55:22 -0700 |
commit | 6fa2d38be243531747241a3ae602069d507368d9 (patch) | |
tree | 7cc81446a97a372640f6a189f09b88fa466e77ce /python/fatcat_web/editing_routes.py | |
parent | 367b06f64546e4533662017c9dbe72aca175a294 (diff) | |
download | fatcat-6fa2d38be243531747241a3ae602069d507368d9.tar.gz fatcat-6fa2d38be243531747241a3ae602069d507368d9.zip |
lint: simple, safe inline lint fixes
'==' vs 'is'; 'not a in b' vs 'a not in b'; etc
Diffstat (limited to 'python/fatcat_web/editing_routes.py')
-rw-r--r-- | python/fatcat_web/editing_routes.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/python/fatcat_web/editing_routes.py b/python/fatcat_web/editing_routes.py index d888735a..5a97dfc4 100644 --- a/python/fatcat_web/editing_routes.py +++ b/python/fatcat_web/editing_routes.py @@ -188,7 +188,7 @@ def generic_entity_edit(editgroup_id, entity_type, existing_ident, edit_template raise ae # check that editgroup is edit-able - if editgroup.changelog_index != None: + if editgroup.changelog_index is not None: abort(400, "Editgroup already merged") # fetch entity (if set) or 404 @@ -285,7 +285,7 @@ def generic_entity_edit(editgroup_id, entity_type, existing_ident, edit_template raise NotImplementedError editor_editgroups = api.get_editor_editgroups(session['editor']['editor_id'], limit=20) - potential_editgroups = [e for e in editor_editgroups if e.changelog_index == None and e.submitted == None] + potential_editgroups = [e for e in editor_editgroups if e.changelog_index is None and e.submitted is None] if not form.is_submitted(): # default to most recent not submitted, fallback to "create new" @@ -313,7 +313,7 @@ def generic_entity_toml_edit(editgroup_id, entity_type, existing_ident, edit_tem raise ae # check that editgroup is edit-able - if editgroup.changelog_index != None: + if editgroup.changelog_index is not None: flash("Editgroup already merged") abort(400) @@ -381,7 +381,7 @@ def generic_entity_toml_edit(editgroup_id, entity_type, existing_ident, edit_tem form = EntityTomlForm.from_entity(existing) editor_editgroups = api.get_editor_editgroups(session['editor']['editor_id'], limit=20) - potential_editgroups = [e for e in editor_editgroups if e.changelog_index == None and e.submitted == None] + potential_editgroups = [e for e in editor_editgroups if e.changelog_index is None and e.submitted is None] if not form.is_submitted(): # default to most recent not submitted, fallback to "create new" @@ -410,7 +410,7 @@ def generic_entity_delete(editgroup_id: Optional[str], entity_type: str, existin raise ae # check that editgroup is edit-able - if editgroup.changelog_index != None: + if editgroup.changelog_index is not None: flash("Editgroup already merged") abort(400) @@ -462,7 +462,7 @@ def generic_entity_delete(editgroup_id: Optional[str], entity_type: str, existin form = EntityTomlForm.from_entity(existing) editor_editgroups = api.get_editor_editgroups(session['editor']['editor_id'], limit=20) - potential_editgroups = [e for e in editor_editgroups if e.changelog_index == None and e.submitted == None] + potential_editgroups = [e for e in editor_editgroups if e.changelog_index is None and e.submitted is None] if not form.is_submitted(): # default to most recent not submitted, fallback to "create new" @@ -484,7 +484,7 @@ def generic_edit_delete(editgroup_id, entity_type, edit_id): abort(ae.status) # check that editgroup is edit-able - if editgroup.changelog_index != None: + if editgroup.changelog_index is not None: flash("Editgroup already merged") abort(400) |