Skip to content

Commit

Permalink
Fixed Android interfaces import
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed Oct 21, 2022
1 parent ed4070a commit 886b0ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion RNS/Interfaces/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

import os
import glob
import RNS.Interfaces.Android

modules = glob.glob(os.path.dirname(__file__)+"/*.py")
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]
2 changes: 1 addition & 1 deletion RNS/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.16"
__version__ = "0.3.17"
2 changes: 1 addition & 1 deletion RNS/vendor/platformutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ def cryptography_old_api():
if cryptography.__version__ == "2.8":
return True
else:
return False
return False

0 comments on commit 886b0ac

Please sign in to comment.