Skip to content

Commit

Permalink
🐛 :pylint CI fix ( v4.0.6 Changes) (#630)
Browse files Browse the repository at this point in the history
v4.0.6 Changes
  • Loading branch information
sreehari-aot authored Jul 20, 2022
1 parent 91f5086 commit 2bcf846
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 16 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Changelog for formsflow.ai

Mark items as `Added`, `Changed`, `Fixed`, `Removed`, `Untested Features`, `Upcoming Features`, `Known Issues`
## 4.0.6 - 2022-07-19

`Fixed`

**forms-flow-web**
* Fixed public form authentication check.

`Modified`

**forms-flow-data-analysis-api**

* Modified DataAnalysis API and Sentiment-analysis Jobs.



## 4.0.5 - 2022-04-19

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![FormsFlow BPM CI](https://github.com/AOT-Technologies/forms-flow-ai/actions/workflows/forms-flow-bpm-ci.yml/badge.svg)](https://github.com/AOT-Technologies/forms-flow-ai/actions)
[![Join the chat at https://gitter.im/forms-flow-ai/community](https://badges.gitter.im/forms-flow-ai/community.svg)](https://gitter.im/forms-flow-ai/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Join the chat at https://stackoverflow.com/questions/tagged/formsflow.ai](https://img.shields.io/badge/ask%20-on%20%20stackoverflow-F47F24)](https://stackoverflow.com/questions/tagged/formsflow.ai?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
<img src="https://img.shields.io/badge/release-v4.0.5-blue"/>
<img src="https://img.shields.io/badge/release-v4.0.6-blue"/>
<img src="https://img.shields.io/badge/LICENSE-Apache%202-green"/>

**formsflow.ai** is an open source solution framework developed and maintained by [AOT Technologies](https://www.aot-technologies.com/). The framework combines selected open source Forms, Workflow, Analytics, and Security products with custom-built integration code to provide a seamless solution that provides a viable alternative to expensive, enterprise software products.
Expand Down
28 changes: 15 additions & 13 deletions forms-flow-api/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = formsflow_api
version = 4.0.5
version = 4.0.6
author = aot-technologies
classifiers =
Development Status :: Beta
Expand Down Expand Up @@ -36,7 +36,7 @@ exclude = .git,*migrations*,*venv*, .eggs*
docstring-min-length=10
per-file-ignores =
*/__init__.py:F401,I001
max-line-length = 88
max-line-length = 120
ignore = E203,E501, Q000, D401, B902, I001, I003, I004, E126, W503, W504

[pycodestyle]
Expand All @@ -49,20 +49,10 @@ ignored-modules=flask_sqlalchemy
sqlalchemy
per-file-ignores =
*/__init__.py:F401
good-names=
b,
d,
e,
f,
i,
t,
u,
rv,
logger

[pylint]
ignore=migrations,tests
max_line_length=120
max-line-length=120
notes=FIXME,XXX,TODO
ignored-modules=flask_sqlalchemy,sqlalchemy,SQLAlchemy,alembic,scoped_session
ignored-classes=scoped_session
Expand All @@ -71,6 +61,18 @@ min-similarity-lines=30
# ignore-comments=yes
# ignore-docstrings=yes
ignore-imports=yes
good-names=
b,
d,
e,
f,
i,
t,
u,
rv,
logger



[isort]
profile = black
Expand Down
2 changes: 1 addition & 1 deletion forms-flow-api/src/formsflow_api/services/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def create_application(data, token):
"formUrl": {"value": application.form_url},
"formName": {"value": mapper.form_name},
"submitterName": {"value": application.created_by},
"submissionDate": {"value": application.created.__str__()},
"submissionDate": {"value": str(application.created)},
}
}
try:
Expand Down
2 changes: 1 addition & 1 deletion forms-flow-web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "formsflow-ai-react",
"description": "React web app for formsflow.ai project",
"version": "4.0.5",
"version": "4.0.6",
"main": "index.js",
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
Expand Down

0 comments on commit 2bcf846

Please sign in to comment.