🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More
Socket
Book a DemoSign in
Socket

libdev

Package Overview
Dependencies
Maintainers
1
Versions
102
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libdev - pypi Package Compare versions

Comparing version
0.98
to
0.99
+1
-1
libdev.egg-info/PKG-INFO
Metadata-Version: 2.4
Name: libdev
Version: 0.98
Version: 0.99
Summary: Set of standard functions for development

@@ -5,0 +5,0 @@ Home-page: https://github.com/chilleco/lib

@@ -5,4 +5,4 @@ """

__version__ = "0.98"
__version__ = "0.99"
__all__ = ("__version__",)

@@ -38,3 +38,7 @@ """

# pylint: disable=protected-access
exif = image._getexif()
get_exif = getattr(image, "_getexif", None)
if not callable(get_exif):
return image
exif = get_exif()
if exif and orientation in exif:

@@ -41,0 +45,0 @@ exif = dict(exif.items())

Metadata-Version: 2.4
Name: libdev
Version: 0.98
Version: 0.99
Summary: Set of standard functions for development

@@ -5,0 +5,0 @@ Home-page: https://github.com/chilleco/lib