Skip to content

Commit

Permalink
A fix
Browse files Browse the repository at this point in the history
  • Loading branch information
onuratakan committed Apr 13, 2024
1 parent f97903d commit 888e5cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upsonic/remote/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def upsonic_serializer(func):
for each in the_source[0]:
the_full_string += each
imports = [line + "\n" for line in the_full_string.split('\n')
if line.lstrip().startswith('import ') or line.lstrip().startswith('from ')]
if line.startswith('import ') or line.startswith('from ')]

the_import_string = ""
for each in imports:
Expand Down

0 comments on commit 888e5cd

Please sign in to comment.