🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

serverless-starter-python

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serverless-starter-python - npm Package Compare versions

Comparing version
0.2.2
to
0.2.3
+1
-1
package.json
{
"name": "serverless-starter-python",
"version": "0.2.2",
"version": "0.2.3",
"description": "A bare bones Serverless Framework project with examples for common use cases in Python.",

@@ -5,0 +5,0 @@ "author": {

@@ -11,6 +11,2 @@ """

import logging
import sys
import os
# relative import of lib module
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
import lib

@@ -17,0 +13,0 @@

@@ -11,8 +11,5 @@ """

import logging
import sys
import os
# relative import of lib module
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
import lib
log = logging.getLogger()

@@ -19,0 +16,0 @@ log.setLevel(logging.DEBUG)

@@ -11,6 +11,2 @@ """

import logging
import sys
import os
# relative import of lib module
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
import lib

@@ -17,0 +13,0 @@