Skip to content

Commit

Permalink
fix gen
Browse files Browse the repository at this point in the history
  • Loading branch information
nmichlo committed Jul 1, 2024
1 parent 023ca0e commit 4d3ce48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pydependence/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE #
# SOFTWARE. #
# ============================================================================== #

import contextlib
import logging
import shutil
Expand Down
2 changes: 1 addition & 1 deletion pydependence/_core/requirements_out.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def as_requirements_txt(
) -> str:
lines = []
if notice:
lines.append(self.autogen_notice)
lines.append(f'# {self.autogen_notice}')
for req in self.requirements:
# add requirement
lines.append(f"{req.requirement}")
Expand Down

0 comments on commit 4d3ce48

Please sign in to comment.