mirror of
https://github.com/apache/superset.git
synced 2026-04-20 00:24:38 +00:00
Add release refinements from 0.35.2 release (#8925)
* Add refinements from 0.35.2 release * Trim whitespace from voter name if voters entered with space after comma (e.g. 'Ville, Andy') * Reinstate deterministic deps * Bump copyright date in NOTICE * Fix incorrect link in README
This commit is contained in:
@@ -15,9 +15,9 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
from typing import List
|
||||
import smtplib
|
||||
import ssl
|
||||
from typing import List
|
||||
|
||||
try:
|
||||
import jinja2
|
||||
@@ -39,7 +39,7 @@ PROJECT_DESCRIPTION = "Apache Superset (incubating) is a modern, enterprise-read
|
||||
def string_comma_to_list(message: str) -> List[str]:
|
||||
if not message:
|
||||
return []
|
||||
return message.split(",")
|
||||
return [element.strip() for element in message.split(",")]
|
||||
|
||||
|
||||
def send_email(
|
||||
|
||||
Reference in New Issue
Block a user