Skip to content

Commit

Permalink
Blackify
Browse files Browse the repository at this point in the history
  • Loading branch information
coroa committed Feb 22, 2024
1 parent f86527c commit 73e2166
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/aneris/_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
The default configuration values are provided in aneris.RC_DEFAULTS.
"""

import os
from collections import abc

Expand Down
1 change: 1 addition & 0 deletions src/aneris/cli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Harmonization CLI for aneris.
"""

import argparse
import os

Expand Down
2 changes: 1 addition & 1 deletion src/aneris/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ def country_name(iso: str):


def skipempty(*dfs):
return [df for df in dfs if not df.empty]
return [df for df in dfs if not df.empty]

0 comments on commit 73e2166

Please sign in to comment.