mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
remove redundant call to Path()
This commit is contained in:
parent
8f21f1e510
commit
490f578d1c
1 changed files with 1 additions and 2 deletions
|
@ -14,7 +14,6 @@ import unittest
|
||||||
import yaml
|
import yaml
|
||||||
import zipfile
|
import zipfile
|
||||||
from unittest import mock
|
from unittest import mock
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
localmodule = os.path.realpath(
|
localmodule = os.path.realpath(
|
||||||
os.path.join(os.path.dirname(inspect.getfile(inspect.currentframe())), '..')
|
os.path.join(os.path.dirname(inspect.getfile(inspect.currentframe())), '..')
|
||||||
|
@ -476,7 +475,7 @@ class BuildTest(unittest.TestCase):
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
app['Builds'] = [build]
|
app['Builds'] = [build]
|
||||||
fdroidserver.metadata.write_metadata(Path(metadata_file), app)
|
fdroidserver.metadata.write_metadata(metadata_file, app)
|
||||||
|
|
||||||
os.makedirs(os.path.join('unsigned', 'binaries'))
|
os.makedirs(os.path.join('unsigned', 'binaries'))
|
||||||
production_result = os.path.join(
|
production_result = os.path.join(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue